@view('header', [ 'title' => 'Transactions - Admin' ])
From: {{ $transaction->from_account->name }}
@else:From: {{ $transaction->from_account_id }}
@endif @if (is_numeric($transaction->to_account_id)):To: {{ $transaction->to_account->name }}
@else:To: {{ $transaction->to_account_id }}
@endifAmount: {!! format_money($transaction->amount) !!}
Send at: {{ $transaction->created_at }}
There are no transactions found
@endif @view('footer')