diff --git a/resources/views/livewire/show-clientes.blade.php b/resources/views/livewire/show-clientes.blade.php index 5a26016..c73528a 100755 --- a/resources/views/livewire/show-clientes.blade.php +++ b/resources/views/livewire/show-clientes.blade.php @@ -161,71 +161,11 @@ -
+

ContraseƱa

{{ $this->consultaPassword($cliente->id) }}

-
-

Servicio

- @if (!empty($cliente->tarifa->servicio)) -

{{ $cliente->tarifa->servicio->nombre }} - - @if ($cliente->tarifa->servicio->nombre != 'Spotify Premium' && $cliente->tarifa->servicio->nombre != 'Youtube Premium') - {{ $cliente->tarifa->pantallas }} Pantallas - @endif - -

- @endif - - @if (!empty($cliente->promocion_id)) -

{{ $cliente->promocion->nombre }}

- @endif -
-
-

Estado

-

- {{ $cliente->estado ?? '' }} -

-
-
-

Restante

-

- @php - $date1 = new DateTime(strtr(strval($fechaActual), '/', '-')); - $date2 = new DateTime(strtr(strval($cliente->fecha_final), '/', '-')); - @endphp - - @if ($date1 < $date2) -

- @php - $diff = $date1->diff($date2); - echo $diff->days . ' dias'; - @endphp -

- @endif - - @if ($date1 > $date2) -

- @php - echo 'Vencido'; - @endphp -

- @endif - - @if ($date1 == $date2) -

- @php - echo 'Vence hoy!!'; - @endphp -

- @endif -

-
-

Acciones