records = []; $calendars = \App\Models\Calendar::get(); foreach($calendars as $c) { $this->records[] = array('id' => $c->id, 'title' => $c->course->name, 'start' => $c->from, 'end' => $c->to); } return view('livewire.calendar'); } }