@if ($errors->any())
{{ __('Whoops! Something went wrong.') }}
@endif

Invoice Items

@if(isset($invoice) && $invoice->items->count() > 0) @foreach($invoice->items as $index => $item)

Item #{{ $index + 1 }}

quantity) }}" required>
unit_price) }}" required>
amount) }}" readonly required>
@if(isset($item->id)) @endif
@endforeach @endif

Invoice Totals

$
%
$
$
$

Additional Information

These notes will be visible on the invoice.

@isset($invoice) @if($invoice->payment_date)
{{ $invoice->payment_date->format('M d, Y') }}
@endif @if($invoice->sent_at)
{{ $invoice->sent_at->format('M d, Y H:i') }}
@endif @endisset