loadNotifications(); } // Get filtered users based on the search input public function loadNotifications() { $this->notifs = collect(json_decode(file_get_contents(storage_path('app/notifs.json')), true)); } public function render() { return view('livewire.notification.notification', [ 'notification' => $this->notifs, // Pass filtered notifs here ]); } }