@extends('layouts.admin') @section('page-title') {{__('POS Summary')}} @endsection @section('breadcrumb')
{{__('POS ID')}} | {{ __('Date') }} | {{ __('Customer') }} | {{ __('Warehouse') }} | {{ __('Amount') }} | |
---|---|---|---|---|---|
{{ AUth::user()->posNumberFormat($posPayment->pos_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)? $posPayment->posPayment->amount:0}} |
{{__('No Data Found')}} |