@extends('backend.layouts.master') @section('page-title', 'Invoice Print') @push('css') @endpush @section('invoice')
@elseif (get_setting('inv_logo') == 'name')
| Name | : | {{ $invoice->customer->name }} | |||
| Address | : | {{ $invoice->customer->address }} | |||
| Mobile | : | {{ $invoice->customer->phone }} | |||
INVOICE NO
( {{ $invoice->invoice_no }} )
Date : {{ date('d/m/Y', strtotime($invoice->date)) }}
| #SL | Product | Quantity | Unit Price | Total Amount |
|---|---|---|---|---|
| {{ $key + 1 }} | @if ($item->status == 2) {{ $item->product?->name }} @if (env('APP_SC') == 'yes') @if ($item->product_variation_id != null) ({{ $item->product_variation?->size?->size }}-{{ $item->product_variation?->color?->color }}) @endif @endif @else {{ $item->product?->name }} @if ($item->is_return == 1) Return @endif @if (env('APP_SC') == 'yes') @if ($item->product_variation_id != null) ({{ $item->product_variation?->size?->size }}-{{ $item->product_variation?->color?->color }}) @endif @endif @endif | {{ $qty }} | {{ $item->rate }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | {{ $item->subtotal }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} |
| Sub Total : | {{ $invoice->estimated_amount }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | |||
| Discount : | {{ $invoice->discount }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | |||
| Grand Total : | {{ $invoice->total_amount }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | |||
| Paid : | {{ $invoice->total_paid }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | |||
| Total Due : | {{ $invoice->total_due }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | |||
Notes: {{ $invoice->note }}
Customer Signature
Authorized Signature