@if($sucursales->count() > 0)
@endif
Total Vendido: Q. {{ $total }}
No. |
Fecha y Hora |
Nombre Cliente |
Tipo |
Estado |
Tiempo |
Subtotal |
Descuento |
Total |
Acciones |
@foreach ($orders as $key => $order)
{{ $order->order_number }} |
{{ $order->start }} |
{{ $order->cliente }} |
{{ $order->categoryname }} |
{{ $order->status }} |
{{ $order->time }} |
{{ $order->total + $order->discount }} |
{{ $order->discount }} |
{{ $order->total }} |
@if($order->status != 'anulada')
@endif
|
@endforeach