loadTopUp(); // Load users initially } public function loadTopUp() { $this->topUp = collect(json_decode(file_get_contents(storage_path('app/top-up.json')), true)); } public function render() { return view('livewire.top-up.top-up', [ 'top_up' => $this->topUp, // Pass all users to the table ]); } }