Resident Invoice
{!! Form::label('invoice_no', 'Invoice Number', ['class' => 'form-label']) !!} {!! Form::label('issue_date', 'Date of Issue', ['class' => 'form-label']) !!} {!! Form::label('due_date', 'Due Date', ['class' => 'form-label']) !!}
{!! Form::label('invoice_no', @$invoice_no, ['class' => 'form-label']) !!} {!! Form::label('issue_date', @$invoice->issue_date ? $invoice->issue_date : "", ['class' => 'form-label']) !!} {!! Form::label('due_date', @$invoice->due_date ? $invoice->due_date : "", ['class' => 'form-label']) !!}
Billing Details
{!! Form::label('resi_comp_name', 'Resident Name', ['class' => 'form-label']) !!} {!! Form::label('resi_comp_name', $residents[@$invoice->resident_id], ['class' => 'form-label']) !!}
{!! Form::label('address', 'Address', ['class' => 'col-sm-12 col-form-label']) !!}
{!! Form::label('street', 'Street', ['class' => 'col-sm-6']) !!} {!! Form::label('city', 'City', ['class' => 'col-sm-6']) !!}
{!! Form::label('street', @$invoice->street, ['class' => 'col-sm-6']) !!} {!! Form::label('city', @$invoice->city, ['class' => 'col-sm-6']) !!}
{!! Form::label('state', 'State', ['class' => 'col-sm-6']) !!} {!! Form::label('zip', 'Zip', ['class' => 'col-sm-6']) !!}
{!! Form::label('state', @$invoice->state, ['class' => 'col-sm-6']) !!} {!! Form::label('zip', @$invoice->zip, ['class' => 'col-sm-6']) !!}
{!! Form::label('email', 'Email Address', ['class' => 'col-sm-6']) !!} {!! Form::email('email', @$invoice->email, ['class' => 'col-sm-6']) !!}
Invoice Items
@foreach (@$invoice->invoice_items['description'] as $index => $description) @endforeach
{!! Form::label('description', 'Description', ['class' => 'form-label']) !!} {!! Form::label('price', 'Price', ['class' => 'form-label']) !!} {!! Form::label('total', 'Total', ['class' => 'form-label']) !!}
{!! Form::label('invoice_items[description][]', @$invoice->invoice_items['description'][$index], ['class' => 'form-label']) !!} {!! Form::label('invoice_items[price][]', @$invoice->invoice_items['price'][$index], ['class' => 'form-label']) !!} {!! Form::label('invoice_items[total][]', @$invoice->invoice_items['total'][$index], ['class' => 'form-label']) !!}
Payment Details
{!! Form::label('late_fees', 'Late Fee', ['class' => 'form-label']) !!} {!! Form::label('sub_total', 'Subtotal', ['class' => 'form-label']) !!} {!! Form::label('taxes', 'Taxes(7%)', ['class' => 'form-label']) !!} {!! Form::label('total_amount', 'Total Amount Due', ['class' => 'form-label']) !!}
{!! Form::label('late_fees', @$invoice->late_fees ? $invoice->late_fees : 0, ['class' => 'form-label']) !!} {!! Form::label('sub_total', @$invoice->sub_total, ['class' => 'form-label']) !!} {!! Form::label('taxes', @$invoice->taxes, ['class' => 'form-label']) !!} {!! Form::label('total_amount', @$invoice->total_amount, ['class' => 'form-label']) !!}
Invoice Notes
{!! Form::label('notes', 'Notes', ['class' => 'form-check-label', 'for' => 'notes']) !!} {!! Form::label('notes', @$invoice->notes, ['class' => 'form-check-label', 'for' => 'notes']) !!}