@foreach($all_histories as $history) @endforeach
{{ __('Payment Gateway') }} {{ __('Payment Status') }} {{ __('Deposit Amount') }} {{ __('Deposit Date') }}
@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) }} @endif {{ float_amount_with_currency_symbol($history->amount) }} {{ $history->created_at }}