{{ __('SN') }} | {{ __('Amount') }} | {{ __('Gateway Name') }} | {{ __('Transaction') }} | {{ __('Deposit At') }} | {{ __('Status') }} | @forelse ($wallet_histories as $index => $wallet_history)
---|---|---|---|---|---|
{{ ++$index }} | {{ currency($wallet_history->amount) }} | {{ $wallet_history->payment_gateway }} | {{ $wallet_history->transaction_id }} | {{ $wallet_history->created_at->format('H:iA, d M Y') }} | @if ($wallet_history->payment_status == 'success') success @elseif ($wallet_history->payment_status == 'rejected') rejected @else pending @endif |