@extends('layouts.admin') @section('page-title') {{__('POS Summary')}} @endsection @section('breadcrumb') @endsection @push('css-page') @endpush @push('script-page') @endpush @section('action-btn')
@endsection @section('content')
@forelse ($posPayments as $posPayment) @if($posPayment->customer_id == 0) @else @endif @empty @endforelse
{{__('POS ID')}} {{ __('Date') }} {{ __('Customer') }} {{ __('Warehouse') }} {{ __('Amount') }}
{{ AUth::user()->posNumberFormat($posPayment->pos_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)? $posPayment->posPayment->amount:0}}

{{__('No Data Found')}}

@endsection