{{ $title }}
{{-- Search filter --}}
{{ __('SN') }} | {{ __('User') }} | {{ __('Order Id') }} | {{ __('Paid Amount') }} | {{ __('Gateway') }} | {{ __('Status') }} | {{ __('Payment') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|---|
{{ ++$index }} | {{ $order?->user?->name }} | #{{ $order->invoice_id }} | {{ $order->paid_amount }} {{ $order->payable_currency }} | {{ $order->payment_method }} |
@if ($order->status == 'completed')
{{ __('Completed') }}
@elseif($order->status == 'processing')
{{ __('Processing') }}
@elseif($order->status == 'declined')
{{ __('Declined') }}
@else
{{ __('Pending') }}
@endif
|
@if ($order->payment_status == 'paid')
{{ __('Paid') }}
@elseif ($order->payment_status == 'cancelled')
{{ __('Cancelled') }}
@else
{{ __('Pending') }}
@endif
|
{{ $orders->links() }}