|
|
{{ $company->name }} {{ $company->address }} {{ $company->email }} {{ $company->phone }} |
@if($order->order_type == "purchases")
{{ $traslations['purchase_invoice'] }}
@elseif($order->order_type == "purchase-returns")
{{ $traslations['purchase_return_invoice'] }}
@elseif($order->order_type == "sales-returns")
{{ $traslations['sales_return_invoice'] }}
@elseif($order->order_type == "sales")
{{ $traslations['sales_invoice'] }}
@elseif($order->order_type == "quotations")
{{ $traslations['quotation_invoice'] }}
@endif
ORIGINAL FOR RECIPIENT |
| {{'Bill To:'}} |
| {{ 'Invoice#:' }} | {{ $order->invoice_number }} |
| {{ 'Invoice Date:' }} | {{ $order->order_date }} |
| {{ 'Due Date:' }} | {{ '21-Dec-24' }} |
| {{ 'Place of Supply:' }} | {{ $order->user->address }} |
| {{'Ship To:'}} |
| # | {{ 'Item' }} | {{ 'HSN/SAC' }} | {{ 'Rate/Item' }} | {{'Qty'}} | {{ 'Amount' }} | ||
| {{ $loop->iteration }} | {{ $item->product->name }} | {{ '1005'}} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $item->single_unit_price) }} | {{ $item->quantity . ' ' . $item->unit->short_name }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $item->subtotal) }} | ||
| {{'Taxable Amount'}} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->tax_amount) }} | ||||||
| {{'IGST'}} | {{$order->tax_rate . '%'}} | ||||||
| {{'Round Off'}} | {{round($order->tax_amount ,0,PHP_ROUND_HALF_UP) - $order->tax_amount}} | ||||||
| {{'Total'}} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->total) }} | ||||||
| {{'Total Items/Qty:'}} {{$order->total_items .'/'. $order->total_quantity}} | {{'Total Amount(in words):'}} | {{ App\Classes\Common::convertNumberToWords($order->total) }} | |||||
| {{'Amount Payable:'}} | {{App\Classes\Common::formatAmountCurrency($company->currency,$order->total)}} |
| {{'Pay Using UPI:'}} |
|
| {{'Bank Details:'}} | ||
| {{'Bank:'}} | {{'YES BANK'}} | {{'For' .' '. $company->name}} |
| {{'Account #:'}} | {{'667342423462345'}} | |
| {{'IFSC:'}} | {{'YESBBIN0654'}} | |
| {{'Branch:'}} | {{'Kodihilie'}} |
| {{'Notes:'}} |
| {{$order->notes}} |
| {{'Terms and Conditions:'}} |
| {!! nl2br($warehouse->terms_condition) !!} |