@extends('layouts.main') @section('page-title') {{__('POS Order Detail')}} @endsection @push('scripts') @endpush @push('css') @endpush @section('page-breadcrumb') {{__('POS Order')}}, {{\workdo\Pos\Entities\Pos::posNumberFormat($pos->pos_id) }} @endsection @section('page-action') @permission('pos order manage')
@endpermission @endsection @section('content'){{__('Issue Date')}} : {{company_date_formate($pos->pos_date)}}
{{__('Billed To')}} : {{ !empty($customer->billing_name) ? $customer->billing_name : '' }} {{ !empty($customer->billing_address) ? $customer->billing_address : '' }} {{ !empty($customer->billing_city) ? $customer->billing_city . ' ,' : '' }} {{ !empty($customer->billing_state) ? $customer->billing_state . ' ,' : '' }} {{ !empty($customer->billing_zip) ? $customer->billing_zip : '' }} {{ !empty($customer->billing_country) ? $customer->billing_country : '' }}
{{ !empty($customer->billing_phone) ? $customer->billing_phone : '' }}
{{__('Tax Number ')}} : {{!empty($customer->tax_number)?$customer->tax_number:''}}
@endif{{__('Shipped To')}} : {{ !empty($customer->shipping_name) ? $customer->shipping_name : '' }} {{ !empty($customer->shipping_address) ? $customer->shipping_address : '' }} {{ !empty($customer->shipping_city) ? $customer->shipping_city .' ,': '' }} {{ !empty($customer->shipping_state) ? $customer->shipping_state .' ,': '' }} {{ !empty($customer->shipping_zip) ? $customer->shipping_zip : '' }} {{ !empty($customer->shipping_country) ? $customer->shipping_country : '' }}
{{ !empty($customer->shipping_phone) ? $customer->shipping_phone : '' }}
{{__('Tax Number ')}} : {{!empty($customer->tax_number)?$customer->tax_number:''}}
@endif @endif# | {{__('Items')}} | {{__('Quantity')}} | {{__('Price')}} | {{__('Tax')}} | {{__('Tax Amount')}} | {{__('Total')}} | |
---|---|---|---|---|---|---|---|
{{$key+1}} | {{!empty($iteam->product)?$iteam->product->name:''}} | {{$iteam->quantity}} | {{currency_format_with_sym($iteam->price)}} |
@if(!empty($iteam->tax))
|
{{currency_format_with_sym($totalTaxPrice)}} | {{currency_format_with_sym(($iteam->price*$iteam->quantity+$totalTaxPrice))}} | |
{{__(' Sub Total')}} | {{currency_format_with_sym($posPayment['amount'])}} | ||||||
{{__('Discount')}} | {{currency_format_with_sym($posPayment['discount'])}} | ||||||
{{__('Total')}} | {{currency_format_with_sym($posPayment['discount_amount'])}} |