{{ __('Transcations List') }}

{{ __('Show All Transcations List') }}

@foreach ($transcations as $transcation) @endforeach
{{ __('Trx Id') }} {{ __('Payment Method') }} {{ __('Amount') }} {{ __('Date Created') }} {{ __('Status') }}
{{ $transcation->trx_id }} {{ $transcation->payment_method }} {{ $transcation->amount }} {{ $transcation->created_at->isoFormat('MM MMM Y') }} @if ($transcation->status == 'approved') {{ __('Paid') }} @else {{ __('Unpaid') }} @endif