| {{__('ID')}} | {{__('User Details')}} | {{ __('Payment Gateway') }} | {{__('Payment Status')}} | {{ __('Deposit Amount') }} | {{__('Manual Payment Image')}} | {{ __('Deposit Date') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|
| {{ $history->id }} |
{{ __('Name:') }}{{ $history->user?->first_name .' '.$history->user?->last_name }} {{ __('Email:') }}{{ $history->user?->email }} {{ __('Phone:') }}{{ $history->user?->phone }}
{{ __('Verified Status:') }}
|
@if($history->payment_gateway == 'manual_payment') {{ ucfirst(str_replace('_',' ',$history->payment_gateway)) }} @else {{ $history->payment_gateway == 'authorize_dot_net' ? __('Authorize.Net') : ucfirst($history->payment_gateway) }} @endif |
@if($history->payment_status == '' || $history->payment_status == 'cancel')
{{ __('Cancel') }}
@else
{{ ucfirst(__($history->payment_status)) }}
@if($history->payment_status == 'pending')
|
{{ float_amount_with_currency_symbol($history->amount) }} |
@if(empty($history->manual_payment_image))
@else
|
{{ $history->created_at }} | @can('deposit-history-details') {{ __('View Details') }} @endcan |