dbfdg @extends('layouts.admin') @section('page-title') {{__('POS Summary')}} @endsection @section('breadcrumb')
{{__('POS ID')}} | {{ __('Date') }} | {{ __('Customer') }} | {{ __('Warehouse') }} | {{ __('Sub Total') }} | {{ __('Discount') }} | {{ __('Total') }} | |
---|---|---|---|---|---|---|---|
{{ AUth::user()->posNumberFormat($posPayment->id) }} | {{ Auth::user()->dateFormat($posPayment->created_at)}} | @if($posPayment->customer_id == 0){{__('Walk-in Customer')}} | @else{{ !empty($posPayment->customer) ? $posPayment->customer->name : '' }} | @endif{{ !empty($posPayment->warehouse) ? $posPayment->warehouse->name : '' }} | {{!empty($posPayment->posPayment)? \Auth::user()->priceFormat ($posPayment->posPayment->amount) :0}} | {{!empty($posPayment->posPayment)? \Auth::user()->priceFormat($posPayment->posPayment->discount) :0}} | {{!empty($posPayment->posPayment)? \Auth::user()->priceFormat($posPayment->posPayment->discount_amount) :0}} |
{{__('No Data Found')}} |