@extends('layouts.app') @section('title', 'Invoice ' . $invoice->invoice_number) @section('content')
Created on {{ $invoice->created_at->format('M d, Y') }}
{{ $invoice->company->address }}
Invoice #: {{ $invoice->invoice_number }}
Date: {{ $invoice->invoice_date->format('M d, Y') }}
{{ ucfirst($invoice->status) }}{{ $invoice->client->contact_person_name }}
{{ $invoice->client->company_name }}
{{ $invoice->client->company_address }}
@if ($invoice->client->email){{ $invoice->client->email }}
@endif @if ($invoice->client->phone){{ $invoice->client->phone }}
@endifBeneficiary Name: {{ $invoice->company->bank_account_name }}
Account No: {{ $invoice->company->bank_account_number }}
Bank: {{ $invoice->company->bank_name }}
| # | Item | Description | Price | UOM | Qty | Total |
|---|---|---|---|---|---|---|
| {{ $item->item_number }} | {{ $item->item_name }} | {{ $item->description }} | ${{ number_format($item->price_per_unit, 2) }} | {{ $item->uom }} | {{ $item->quantity }} | ${{ number_format($item->total, 2) }} |
| Grand Total: | ${{ number_format($invoice->grand_total, 2) }} | |||||
{{ $invoice->notes }}
{{ $invoice->company->terms_conditions }}