INVOICE
User Information |
|
{{ $invoice['user_name'] }} |
|
{{ $invoice['user_address'] }} |
|
{{ $invoice['user_contact_no'] }} |
Invoice data |
|
{{ $invoice['invoice_number'] }} |
|
{{ $invoice['invoice_date'] }} |
|
{{ $template['company_name'] }} |
|
{{ $info['company_reg_no'] }} |
|
{{ $info['vat_reg_no'] }} |
|
{!! nl2br($template['address']) !!} |
|
{{ $template['phone'] }} |
|
{{ $template['email'] }} |
|
{{ $template['website_address'] }} |
|
Payment Title |
{{ $invoice['title'] }} |
Payment Date |
{{ $invoice['created_at'] }} |
{!! $template['head_desc'] !!}
Description |
Cost |
{{ $invoice['description'] }} |
£ {{ number_format($invoice['cost'],2) }} |
@if($invoice['is_vat'] == 1)
VAT ({{ (($info['vat_percentage'] != 0)?$info['vat_percentage']:20) }}%) |
£ {{ number_format($invoice['vat_cost'],2) }} |
@endif
Total |
£ {{ number_format($invoice['total_cost'],2) }} |
{!! $template['foot_desc'] !!}
|