@extends('layouts.default') @section('header-links') @include('accounts.banking.header') @endsection @section('title', 'Transfers') @section('new_button') add Transfer @endsection @section('content')
@foreach($transfers as $item) @endforeach
Date From Account To Account Amount Actions
{{ Date::parse($item->paid_at)->format($date_format) }} {{ $item->from_account }} {{ $item->to_account }} @money($item->amount, $item->currency_code, true) create
@endsection