{{ trans('invoices.payment') }}

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