@extends('backend.layouts.master') @section('page-title', 'Invoice Print') @push('css') @endpush @section('invoice')
@elseif (get_setting('inv_logo') == 'name')
| Product | Qty | Unit Price | Total A. |
|---|---|---|---|
| {{ $item->product->name }} @if($item->is_return == 1) Return @endif | {{ $qty }} | {{ $item->rate }} | {{ $item->subtotal }} |
| Sub Total : | {{ $invoice->estimated_amount }} | ||
| Discount : | @if (gettype($invoice->discount) === 'string') {{ $invoice->discount }} @else {{ $invoice->discount }} {{ empty(get_setting('com_currency')) ? : get_setting('com_currency') }} @endif | ||
| Total Amount : | {{ $invoice->total_amount }} | ||
| Paid : | {{ $invoice->total_paid }} | ||
| Return Amount : | {{ $invoice->return_amount }} | ||
| Current Due : | {{ $invoice->total_due }} | ||
{{--
|
{{--
|
||
| Card Amount : | @if ($cash?->bank_id != 1) {{ number_format($cash?->amount, 2) }} @else 0.00 @endif | ||
| Change : | @if($invoice->change_amount != null) {{ $invoice->change_amount }} @else 0.00 @endif | ||
| Previous Due : | {{ $invoice->previous_due }} {{ empty(get_setting('com_currency')) ? : get_setting('com_currency') }} | ||
| Total Due : | {{ $invoice->total_due + $invoice->previous_due }} {{ $invoice->total_due }} {{ empty(get_setting('com_currency')) ? : get_setting('com_currency') }} | ||
| Made of Payment | |||
| Credit | @php $creadit = ($invoice->total_paid) - ($invoice->return_amount) @endphp {{ number_format($creadit,2) }} | ||
***** The Product should be change within 7 days.Don't remove the tag can not be change *****
.
.