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

{{ $title }}

@include('dashboard.user.layouts.components.breadcrumbs')
@include('dashboard.admin.user.components.account_options_and_status')
Fund Account
@csrf
@error('amount') {{ $message }} @enderror
@error('type') {{ $message }} @enderror
@error('direction') {{ $message }} @enderror
@error('transaction_at') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@error('notification') {{ $message }} @enderror
Transactions
@foreach ($transactions as $index => $transaction) @endforeach
# Reference ID Type Description Amount Balance Date Status Action
{{ $index + 1 }} {{ $transaction->reference_id }} {{ $transaction->type->label() }} {{ $transaction->description }} {{ currency($transaction->user->currency) }}{{ formatAmount($transaction->amount) }} {{ currency($transaction->user->currency) }}{{ formatAmount($transaction->current_balance) }} {{ date('d M Y, h:i:s A', strtotime($transaction->transaction_at)) }} {!! $transaction->status->badge() !!}
@endsection