@extends('frontend.user.dashboard.user-master') @section('section') @if(!empty(get_static_option('product_module_status'))) @if(count($product_orders) > 0)
@foreach($product_orders as $data) @endforeach
{{get_static_option('product_page_'.$user_select_lang_slug.'_name')}} {{__('Order Info')}} {{__('Payment Status')}}
{{__('Order ID:')}} #{{$data->id}} {{__('Total Amount:')}}{{amount_with_currency_symbol($data->total)}} {{__('Payment Gateway:')}}{{ucwords(str_replace('_',' ',$data->payment_gateway))}} {{__('Order Status:')}} @if($data->status == 'pending') {{__($data->status)}} @elseif($data->status == 'cancel') {{__($data->status)}} @elseif($data->status == 'in_progress') {{str_replace('_',' ',__($data->status))}} @else {{__($data->status)}} @endif {{__('Order Date:')}} {{date_format($data->created_at,'d M Y')}} @if($data->payment_status == 'complete')
@csrf
@endif @if(!empty($data->manual_payment_attachment)) {{__('View Bank Attachment')}} @endif
@if($data->payment_status == 'pending' && $data->status != 'cancel') {{$data->payment_status}} @if( $data->payment_gateway != 'cash_on_delivery' && $data->payment_gateway != 'manual_payment')
@csrf
@endif
@csrf
@else {{$data->payment_status}} @endif {{__('View Order')}}
{{ $product_orders->links() }}
@else
{{__('No Product Order Found')}}
@endif @endif @endsection