{{ __('SN') }} | {{ __('User') }} | {{ __('Order Id') }} | {{ __('Price') }} | {{ __('Status') }} | {{ __('Payment') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|
{{ ++$index }} | {{ $order?->user?->name }} | #{{ $order->order_id }} | {{ currency($order->total_amount) }} |
@if ($order->order_status == 'success')
{{ __('Success') }}
@else
{{ __('Pending') }}
@endif
|
@if ($order->payment_status == 'success')
{{ __('Success') }}
@elseif ($order->payment_status == 'rejected')
{{ __('Rejected') }}
@else
{{ __('Pending') }}
@endif
|