@extends('layouts.admin') @section('page-title') {{__('POS Detail')}} @endsection @push('script-page') @endpush @php $settings = Utility::settings(); @endphp @section('breadcrumb')
| # | {{__('Items')}} | {{__('Quantity')}} | {{__('Price')}} | {{__('Tax')}} | {{__('Tax Amount')}} | {{__('Total')}} |
|---|---|---|---|---|---|---|
| {{$key+1}} | {{!empty($iteam->product())?$iteam->product()->name:''}} | {{$iteam->quantity}} | {{\Auth::user()->priceFormat($iteam->price)}} |
@if(!empty($iteam->tax))
|
{{\Auth::user()->priceFormat($totalTaxPrice)}} | {{\Auth::user()->priceFormat(($iteam->price*$iteam->quantity) + $totalTaxPrice)}} |
| {{__(' Sub Total')}} | {{\Auth::user()->priceFormat($posPayment['amount'])}} | |||||
| {{__('Discount')}} | {{\Auth::user()->priceFormat($posPayment['discount'])}} | |||||
| {{__('Total')}} | {{\Auth::user()->priceFormat($posPayment['discount_amount'])}} |