{{ __('customer.orders.0') }}
@if(count($orders) > 0)
{{ __('customer.orders.2') }} | {{ __('customer.orders.5') }} | {{ __('customer.orders.4') }} | {{ __('customer.orders.7') }} | {{ __('customer.actionsColumn') }} | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
{{ $order->order_number }} | {{ Carbon\Carbon::parse($order->created_at)->format('d/m/Y H:s') }} | @if($order->status == 'pending'){!! __('customer.status.0') !!} | @endif @if($order->status == 'processing'){!! __('customer.status.1') !!} | @endif @if($order->status == 'in_progress' && $order->is_shipped == 0){!! __('customer.status.2') !!} | @endif @if($order->status == 'completed'){!! __('customer.status.3') !!} | @endif @if( $order->status == 'declined'){!! __('customer.status.4') !!} | @endif @if($order->status == 'cancelled'){!! __('customer.status.5') !!} | @endif @if($order->status == 'refunded'){!! __('customer.status.6') !!} | @endif @if($order->status == 'in_progress' && $order->is_shipped == 1){!! __('customer.status.7') !!} | @endif{{ priceView($order->grand_total)}} | {{ __('customer.view') }} |
{{$orders->links()}}
@else
{!! __('customer.noOrders') !!}
@endif