loadStationRating(); // Load stationRating initially } public function loadStationRating() { $this->stationRating = collect(json_decode(file_get_contents(storage_path('app/station-rating.json')), true)); } public function render() { return view('livewire.report.station-rating-report', [ 'stationRating' => $this->stationRating, ]); } }