Files
sirpremiumv2/resources/views/livewire/show-order.blade.php
T
2023-11-07 22:43:10 +00:00

67 lines
3.3 KiB
PHP
Executable File

<div>
<div class="py-12">
@if ($estado == 'aprobado')
<div class=" text-center rounded shadow bg-green-100 mx-auto p-12 max-w-sm ">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-12 h-12 text-green-600 mx-auto">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12c0 1.268-.63 2.39-1.593 3.068a3.745 3.745 0 01-1.043 3.296 3.745 3.745 0 01-3.296 1.043A3.745 3.745 0 0112 21c-1.268 0-2.39-.63-3.068-1.593a3.746 3.746 0 01-3.296-1.043 3.745 3.745 0 01-1.043-3.296A3.745 3.745 0 013 12c0-1.268.63-2.39 1.593-3.068a3.745 3.745 0 011.043-3.296 3.746 3.746 0 013.296-1.043A3.746 3.746 0 0112 3c1.268 0 2.39.63 3.068 1.593a3.746 3.746 0 013.296 1.043 3.746 3.746 0 011.043 3.296A3.745 3.745 0 0121 12z" />
</svg>
<div class="text-green-700 mt-4">
Recarga exitosa
</div>
<a href="{{route('servicios')}}">
<button class=" mt-12 inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-white bg-green-800 hover:bg-green-800 ease-in-out sm-text-sm sm-leading-5">
Servicios
</button>
</a>
</div>
@elseif($estado == 'pendiente')
<div class=" text-center rounded shadow bg-orange-100 mx-auto p-12 max-w-sm ">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-12 h-12 text-orange-700 mx-auto">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z" />
</svg>
<div class="text-red-700">
Recarga pendiente .
</div>
<a href="{{route('servicios')}}">
<button class=" mt-12 inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-white bg-orange-800 hover:bg-orange-800 ease-in-out sm-text-sm sm-leading-5">
Servicios
</button>
</a>
</div>
@else
<div class=" text-center rounded shadow bg-orange-100 mx-auto p-12 max-w-sm ">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-12 h-12 text-red-700 mx-auto">
<path stroke-linecap="round" stroke-linejoin="round" d="M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
<div class="text-red-700">
Error en la recarga.
</div>
<a href="{{route('recarga')}}">
<button class=" mt-12 inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-white bg-red-800 hover:bg-red-800 ease-in-out sm-text-sm sm-leading-5">
Recargar nuevamente
</button>
</a>
</div>
@endif
</div>
</div>