{{ __('Order ID') }} |
{{ __('Amount') }} |
{{ __('Date') }} |
{{ __('Payment') }} |
{{ __('Status') }} |
{{ __('Action') }} |
|---|---|---|---|---|---|
|
{{ $order->order_id }} |
{{ currency($order->total) }} |
{{ $order->created_at->format('d M Y') }} |
@if ($order->payment_status == 1) {{ __('Paid') }} @else {{ __('Unpaid') }} @endif |
@if ($order->order_status == 0)
{{ __('Pending') }} {{ __('Completed') }} {{ __('Rejected') }} {{ __('Processing') }} {{ __('Shipped') }} |