@extends('backend.layouts.master') @section('page-title', 'Invoice Print') @push('css') @endpush @section('invoice')
@elseif (get_setting('inv_logo') == 'name')
| Product | Qty | Unit Price | Discount(%) | Total Amount |
|---|---|---|---|---|
| {{ $item->product->name }} | {{ $qty }} | {{ $item->rate }} | {{ $item->product_discount }} | {{ $item->subtotal }} |
| Sub Total : | {{ $invoice->estimated_amount }} | |||
| Discount : | @if(gettype($invoice->discount)=== 'string') {{ $invoice->discount }} @else {{ $invoice->discount }} TK @endif | |||
| Paid : | {{ $invoice->total_paid }} | |||
| Payment Method : | {{ $bank->bank_name }} | |||
| Change : | @if($invoice->change_amount != null) {{$invoice->change_amount }} @else 0.00 @endif | |||
.
.