|
|
{{ $warehouse->name }}
{{ $warehouse->address }}
Phone : {{ $warehouse->phone }} Email : {{ $warehouse->email }} GSTIN : {{ $warehouse->gstin }} |
@if ($order->order_type == "quotations")
Quotation
@else
Invoice / Cash
Memo
@endif
@if ($order->order_type == "quotations") Quotation No : @else Invoice No : @endif {{ $order->invoice_number }} Date : 18-01-2026 |
| Customer : Walk In Customer | Sold By : Admin |
| # | Item | HSN Code | G.Wt | N.Wt | Rate / Gm | Stone | Stone Amt | Kun Price | Mk Rate | Mk Amt | Other | Qty | Amount |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | {{ $item->product->name }} {{ $item->purity_name }} K. Pcs {{ $item->kundan_pcs }} |
@php $hsn = optional( collect($item->product->customFields ?? []) ->where('field_name', 'HSN Code') ->last() )['field_value'] ?? 'N/A'; @endphp {{ $hsn }} | {{ $item->GrossWeight }} | {{ $item->NetWight }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $item->metalrate) }} | {{ $item->stone }} | {{ $item->stoneprice }} | {{ $item->total_kundan_price }} | {{ $item->makingrate }} | {{ $item->totalmaking }} | {{ $item->othercharges }} | {{ $item->quantity }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $item->subtotal) }} |
| Discount | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->discount) }} |
| SGST | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->tax_amount/2) }} ({{ $order->tax_rate/2 }}%) |
| CGST | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->tax_amount/2) }} ({{ $order->tax_rate/2 }}%) |
| {{ $traslations['shipping'] }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->shipping) }} |
| Round Off | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->roundoff) }} |
| Total Amount | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->total) }} |
| Taxable Value | CGST % | CGST Amt | SGST % | SGST Amt | Total Tax |
|---|---|---|---|---|---|
| {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->subtotal) }} | {{ $order->tax_rate/2 }}% | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->tax_amount/2) }} | {{ $order->tax_rate/2 }}% | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->tax_amount/2) }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->tax_amount) }} |
| Total Payable | Paid Amount | Outstanding | Payment Mode |
|---|---|---|---|
| {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->total) }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->paid_amount) }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->due_amount) }} | @if($order->orderPayments->count() > 0) @foreach ($order->orderPayments as $currentOrderPayment) {{ App\Classes\Common::formatAmountCurrency($company->currency, $currentOrderPayment->amount) }} @if( $currentOrderPayment->payment && $currentOrderPayment->payment->paymentMode ) ({{ $currentOrderPayment->payment->paymentMode->name }}) @endif @endforeach @else - @endif |
{!! $warehouse->bank_details !!}