@extends('layouts.default') @section('header-links') @include('accounts.banking.header') @endsection @section('title', 'Journal List') @section('new_button') addJournal @endsection @section('content')
@foreach($journals as $journal) @endforeach
Date Number Amount Actions
{{ Date::parse($journal->journal_date)->format($date_format) }} {{ $journal->journal_number }} @if($journal->amount != '') @money($journal->amount,'USD',true) @endif create
@endsection