@if(count($orders) > 0)
| {{__('orders.id')}} |
{{__('orders.product_count')}} |
{{__('web.total')}} |
{{__('orders.created_at')}} |
{{__('orders.status')}} |
{{__('web.details')}} |
@foreach($orders as $order)
| {{$order->id}} |
{{$order->total_count}} |
{{$order->payment->total}} {{__('web.sar')}} |
{{$order->date}} |
{{__('orders.'.$order->status)}} |
|
@endforeach
@else
{{__('web.not_exist_orders')}}
@endif