From 8c22563cc160426cb0a2b906010eb5597c21135a Mon Sep 17 00:00:00 2001 From: Coassolo-Lucas Date: Sat, 4 Apr 2026 18:14:11 -0300 Subject: [PATCH] Agregue modo dark al calendar y al la vista del turno --- resources/views/agenda.blade.php | 24 +++++++----- resources/views/appointments/show.blade.php | 41 +++++++++++---------- resources/views/login.blade.php | 2 - 3 files changed, 37 insertions(+), 30 deletions(-) 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 @@
+ class="px-5 py-2.5 font-bold rounded-lg uppercase tracking-wide text-xs flex items-center gap-2 + bg-neutral-900 text-white hover:bg-neutral-700 + dark:bg-neon-lime dark:text-neutral-900 dark:hover:bg-[#b3e600]"> ← Volver a Agenda
-
+
@php $statusMap = [ @@ -31,12 +35,11 @@ ]; $color = $colorMap[$appointment->status] ?? '#3b82f6'; - @endphp {{-- Estado --}}
- + Estado @@ -52,50 +55,50 @@
-

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 ?? '-' }}

@@ -104,4 +107,4 @@
- + \ No newline at end of file diff --git a/resources/views/login.blade.php b/resources/views/login.blade.php index 002efb3..9e0bc6b 100644 --- a/resources/views/login.blade.php +++ b/resources/views/login.blade.php @@ -6,8 +6,6 @@ title="Bicicletería " highlight="Lauck" /> - --> -
@csrf