{{ __('Name') }} {{ $order?->user?->name }}
{{ __('Price') }} {{ currency($order->total_amount) }}
{{ __('Payment Method') }} {{ $order->payment_method }}
{{ __('Payment Status') }} @if ($order->payment_status == 'success')
{{ __('Success') }}
@elseif ($order->payment_status == 'rejected')
{{ __('Rejected') }}
@else
{{ __('Pending') }}
@endif
{{ __('Status') }} @if ($order->order_status == 'success')
{{ __('Success') }}
@else
{{ __('Pending') }}
@endif
{{ __('Transaction') }} {!! nl2br($order->transaction_id) !!}
@if ($order->payment_status == 'pending') {{ __('Make reject payment') }} @endif @if ($order->payment_status == 'rejected' || $order->payment_status == 'pending') {{ __('Make approved payment') }} @endif {{ __('Delete Order') }}