dbfdg @extends('layouts.admin') @section('page-title') {{__('POS Summary')}} @endsection @section('breadcrumb') @endsection @push('css-page') @endpush @section('content')
@forelse ($posPayments as $posPayment) @if($posPayment->customer_id == 0) @else @endif @empty @endforelse
{{__('POS ID')}} {{ __('Date') }} {{ __('Customer') }} {{ __('Warehouse') }} {{ __('Sub Total') }} {{ __('Discount') }} {{ __('Total') }}
{{ AUth::user()->posNumberFormat($posPayment->id) }} {{ Auth::user()->dateFormat($posPayment->created_at)}}{{__('Walk-in Customer')}}{{ !empty($posPayment->customer) ? $posPayment->customer->name : '' }} {{ !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')}}

@endsection