{{ __('POS')}} |
|
{{ __(' FROM')}}:
@if(!empty($settings['registration_number'])){{__('Registration Number')}} : {{$settings['registration_number']}} @endif |
@endif
|
{{ __('Bill To')}}:
{{!empty($customer->billing_name)?$customer->billing_name:''}} |
@if($settings['pos_shipping_display']=='on')
{{__('Ship To')}}:
{{!empty($customer->shipping_name)?$customer->shipping_name:''}} |
@endif
{{__('Item')}} | {{__('Quantity')}} | {{__('Price')}} | {{__('Tax')}} (%) | {{__('Tax Amount')}} | {{__('Total')}} | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{$item->name}} | {{$item->quantity}} | {{currency_format_with_sym($item->price)}} |
@php
$totalTaxRate = 0;
$totalTaxPrice=0;
@endphp
@if(!empty($item->itemTax))
@foreach($item->itemTax as $taxes)
@php
$res = str_ireplace( array( '%' ), ' ', $taxes['rate']);
$taxPrice=\workdo\Pos\Entities\Pos::taxRate($res,$item->price,$item->quantity);
$totalTaxPrice+=$taxPrice;
@endphp
{{$taxes['name']}} ({{$taxes['rate']}}) @endforeach @else - @endif |
{{currency_format_with_sym($totalTaxPrice)}} | {{currency_format_with_sym(($item->price*$item->quantity)+$totalTaxPrice)}} | ||||||||
- | - | - |
- - |
- | - | ||||||||
- | |||||||||||||
{{__('Total')}} | {{$pos->totalQuantity}} | {{currency_format_with_sym($pos->totalRate)}} | - | {{currency_format_with_sym($pos->totalTaxPrice) }} | {{currency_format_with_sym($posPayment->amount)}} | ||||||||
|