@extends('backend.layouts.master') @section('page-title', 'Invoice Print') @push('css') @endpush @section('invoice')
@elseif (get_setting('inv_logo') == 'name')
| #SL | Product | Quantity | Unit Price | Total A. |
|---|---|---|---|---|
| {{ $key + 1 }} |
{{ $item->product->name }} @if($serial) IMEI: {{ $serial?->serial }} @endif Warranty: {{ $item->warranty }} {{ $item->new_details }} |
{{ $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 : | @if(gettype($invoice->discount)=== 'string') {{ $invoice->discount }} @else {{ $invoice->discount }} {{ empty(get_setting('com_currency')) ? : get_setting('com_currency') }} @endif | |||
| Grand Total : | {{ $invoice->total_amount }} {{ empty(get_setting('com_currency')) ? : get_setting('com_currency') }} | |||
| Total 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') }} | |||
NOTE: {{ $invoice->note }}