@extends('layouts.default') @section('header-links') @include('accounts.banking.header') @endsection @section('title', 'Cheques List') @section('new_button') add Cheque @endsection @section('content')
@foreach($cheques as $item) @endforeach @if(count($cheques) == 0) @endif
Number Payee Amount Payment Date Actions
{{ $item->cheque_number }} {{ $item->person_name }} ({{ ucwords($item->person_type) }}) @money($item->amount, $item->currency_code, true) {{ Date::parse($item->paid_at)->format($date_format) }} create remove_red_eye
No Data
@endsection