get(); $appointments = []; foreach($all_appointments as $appointment){ $appointments[] = [ 'id' => $appointment->id, 'title' => $appointment->scheduled_at->format('H:i') . ' - ' . $appointment->client->name, 'start' => $appointment->scheduled_at->format('Y-m-d\TH:i:s'), 'extendedProps' => [ 'description' => $appointment->problem_description, 'status' => $appointment->status, ], ]; } return view('agenda', compact('appointments')); } }