# Invoice {{ $invoice->invoice_number }} Hi {{ $invoice->client_name }}, **{{ $invoice->companyName() }}** has sent you an invoice for **{{ invoice_money((int) $invoice->total_minor, $invoice->currency) }}**@if($invoice->due_date), due {{ $invoice->due_date->format('F j, Y') }}@endif. | Item | Qty | Amount | |:---- |:---:| ------:| @foreach($invoice->lines as $line) | {{ $line->description }} | {{ rtrim(rtrim(number_format($line->quantity, 2), '0'), '.') }} | {{ invoice_money((int) $line->line_total_minor, $invoice->currency) }} | @endforeach @if($invoice->vat_enabled && (int) $invoice->tax_minor > 0) | **Tax (20%)** | | {{ invoice_money((int) $invoice->tax_minor, $invoice->currency) }} | @endif | **Total** | | **{{ invoice_money((int) $invoice->total_minor, $invoice->currency) }}** | View invoice Open your invoice online to **download, print, share, or pay** it securely. Thanks,
{{ $invoice->companyName() }} If the button above doesn't work, copy and paste this link into your browser: [{{ $url }}]({{ $url }})