@view('header', [ 'title' => $account->name . ' - Accounts - Admin' ])
@if ($account->type == Accounts::TYPE_SAVE): SAVE ACCOUNT @endif @if ($account->type == Accounts::TYPE_PAYMENT): PAYMENT ACCOUNT @endif
Amount: {!! format_money($account->amount) !!}
From: {{ $transaction->from_account->name }}
@else:From: {{ $transaction->from_account_id }}
@endifAmount: {!! format_money($transaction->amount) !!}
Send at: {{ $transaction->created_at }}
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')