{!! 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']) !!} |
{!! 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('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']) !!} |
{!! 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']) !!} |