{{ $company['company_name'] }}
{{ $company['address_1'] }}{{ $company['address_2'] ? ', ' . $company['address_2'] : '' }}{{ $company['city'] ? $company['city'] . ', ' : '' }}{{ $company['state'] ? $company['state'] : '' }}{{ $company['pincode'] ? ' - ' . $company['pincode'] : '' }}
Phone:{{ $company['mobile_no'] }}
Invoice No: {{ $sale['bill_no'] }} |
Terms: {{ $sale['terms'] == 1 ? 'Cash' : ($sale['terms'] == 2 ? 'Credit' : '-') }}
Date: {{ $sale['date'] }} |
Time:
{{ \Carbon\Carbon::parse($sale['updated_at'])->timezone('Asia/Kolkata')->format('h:i A') }}
@php
$customer = $sale['customer_details'];
@endphp
Customer: {{ $customer['customer_name'] }} |
GSTIN: {{ $customer['gstin'] }}
Address: {{ $customer['Address_1'] }}{{ $customer['Address_2'] ? ', ' . $customer['Address_2'] : '' }},{{ $customer['village'] }}{{ $customer['pin_code'] ? ' - ' . $customer['pin_code'] : '' }},{{ $customer['state'] }},State Code:{{ $customer['state_code'] }}
Mobile:{{ $customer['phone_no'] }}{{ $customer['mobile_no'] ? ' - ' . $customer['mobile_no'] : '' }}
| Description |
Mrp |
Rate |
Qty |
Total Amt |
@foreach ($sale['bill_items'] as $index => $item)
|
{{ $item['product']['product_name'] }} |
{{ number_format($item['mrp'], 2) }} |
{{ number_format($item['rate'], 2) }} |
{{ number_format($item['qty'], 2) }} |
{{ number_format($item['net_amount'], 2) }} |
@endforeach
| Subtotal |
{{ number_format($sale['gross_amount'], 2) }} |
| GST
{{ number_format($sale['bill_items'][0]['tax_per']) }}% |
{{ number_format($sale['tax_amount'], 2) }} |
| Round Off |
{{ number_format($sale['bill_round_off'], 2) }} |
| Total |
{{ number_format($sale['balance'], 2) }} |
Thank you for your business!
Visit Again