@if ($invoice->deposit > 0)
{{ Form::open(['route' => 'postDeposit', 'class' => 'form-horizontal']) }}
{{ Form::hidden('invoice_id', $invoice->id) }}
{{ Form::close()}}
@endif
| {{ Trans('invoices.created_at') }} |
{{ Trans('invoices.payable_recieved') }} |
{{ Trans('invoices.changed') }} |
{{ Trans('invoices.note') }} |
@if(count($payables))
@foreach($payables as $payable)
| {{ $payable->created_at }} |
{{ money($payable->amount) }} |
{{ money($payable->changed) }} |
{{ $payable->note }} |
@endforeach
@else
|
No History
|
@endif