{{ __('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) !!} |