diff --git a/resources/views/agenda.blade.php b/resources/views/agenda.blade.php index 5161d60..adea0d8 100644 --- a/resources/views/agenda.blade.php +++ b/resources/views/agenda.blade.php @@ -11,7 +11,7 @@ + class="px-5 py-2.5 bg-neutral-900 text-white hover:bg-neutral-700 dark:bg-neon-lime dark:text-neutral-900 dark:hover:bg-[#b3e600] font-bold rounded-lg uppercase tracking-wide text-xs flex items-center gap-2"> Volver a Taller @@ -21,32 +21,38 @@ window.appointments = @json($appointments); -
+ \ No newline at end of file diff --git a/resources/views/appointments/show.blade.php b/resources/views/appointments/show.blade.php index f5574aa..e291b93 100644 --- a/resources/views/appointments/show.blade.php +++ b/resources/views/appointments/show.blade.php @@ -4,12 +4,16 @@ -Cliente
-+
Cliente
+{{ $appointment->client->name }}
Teléfono
-+
Teléfono
+{{ $appointment->contact_phone ?? '-' }}
Fecha pactada de entrega
-+
Fecha pactada de entrega
+{{ $appointment->scheduled_at->format('d/m/Y') }}
Hora
-+
Hora
+{{ $appointment->scheduled_at->format('H:i') }}
Modelo de Bicicleta
-+
Modelo de Bicicleta
+{{ $appointment->bike_model ?? '-' }}
Problema Reportado
-+
Problema Reportado
+{{ $appointment->problem_description }}
Notas
-+
Notas
+{{ $appointment->notes ?? '-' }}