Add empleado, borrado del seeder, cambios esteticos y middleware.

This commit is contained in:
2026-06-10 15:57:51 -03:00
parent d0d61f7985
commit 2454ee3a23
20 changed files with 1039 additions and 200 deletions
+8 -2
View File
@@ -19,8 +19,14 @@ class AgendaController extends Controller
'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,
'client_name' => $appointment->client->name,
'client_phone' => $appointment->contact_phone,
'bike_model' => $appointment->bike_model,
'description' => $appointment->problem_description,
'parts_needed' => $appointment->parts_needed,
'estimated_cost'=> $appointment->estimated_cost,
'status' => $appointment->status,
'notes' => $appointment->notes,
],
];
}