{{ __('Show') }}

{{ __('entries') }}

@foreach ($orders as $order) @endforeach
{{ __('Transaction ID') }}
{{ __('Amount') }}
{{ __('Payment Gateway') }}
{{ __('Status') }}
{{ __('Actions') }}

{{ $order->order_id }}

{{ currency($order->total) }}

@if ($order->payment_status == 1) {{ __('Paid') }} @else {{ __('Unpaid') }} @endif @if ($order->order_status == 0)

{{ __('Pending') }}

@endif @if ($order->order_status == 5)

{{ __('Completed') }}

@endif @if ($order->order_status == 2)

{{ __('Rejected') }}

@endif @if ($order->order_status == 3)

{{ __('Processing') }}

@endif @if ($order->order_status == 4)

{{ __('Shipped') }}

@endif