@extends('layouts.admin') @section('content')

{{ __('Wallet Recharge Pending List') }}

@foreach($walletRecharges as $recharge) @endforeach
{{__('Date')}} {{__('Transaction ID')}} {{__('Payment method')}} {{__('Amount')}} {{__('')}} {{__('Status')}}
{{ $recharge->created_at->format('Y-m-d H:i:s') }} {{ $recharge->payment->payment_id }} {{ $recharge->payment_method }} {{ $recharge->payment->grand_total }} @if($recharge->payment_method == 'bank')

{{ __('Deposit Bank Name') }}: {{ $recharge->payment->bank->name }}

{{ __('Deposit By') }}: {{ $recharge->payment->deposit_by }}

{{ __('Deposit Slip') }}: {{ __('Download') }}

@endif
{{$walletRecharges->links()}}
@endsection @push('style') @endpush @push('script') @endpush