{!! __('Invoice number') !!} | {!! __('Customer name') !!} | {!! __('Mobile number') !!} | {!! __('Region') !!} | {!! __('Date') !!} | {!! __('Bill') !!} | {!! __('Status') !!} | |
---|---|---|---|---|---|---|---|
{{ $loop->index + $orders->firstItem() }} | {!! $order->order_number !!} | {!! @$order->user->name !!} | {!! @$order->user->mobile !!} | {!! @$order->destination->title !!} | {{ $order->created_at->format('Y/m/d - h:i') }} {{ __($order->created_at->format('a')) }} | {!! $order->price !!} {!! __('EGP') !!} | @if (!$order->publish) @else @if ($order->publish == 1 ) {!! __('Done') !!} @else {!! __('Canceled') !!} @endif @endif |