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

{{ __('Wallet Recharge 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 }} {{ statusWithdrawalStatus($recharge->status) }}
{{$walletRecharges->links()}}
@endsection @push('style') @endpush @push('script') @endpush