@extends('layouts.cashierapp') @section('content')

List of Checks

@if(count($payments)>0) @foreach($payments as $payment)
Notice: Undefined variable: payment in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 14

Notice: Trying to get property of non-object in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 14

Notice: Undefined variable: payment in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 18

Notice: Trying to get property of non-object in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 18

Notice: Undefined variable: payment in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 18

Notice: Trying to get property of non-object in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 18

Notice: Undefined variable: payment in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 18

Notice: Trying to get property of non-object in D:\xampp\htdocs\dmmc\resources\views\cashier\listofchecks.blade.php on line 18
@endforeach
Receipt NoStudent IDNameBankCheckAmountStatusView
{{$payment->receipt_no}}@if($payment->idno!="999999"){{$payment->idno}}@endif{{$payment->paid_by}}{{$payment->bank_name}}{{$payment->check_number}}{{number_format($payment->cash_amount+$payment->check_amount-$payment->change_amount,2)}}{{$status}}View
Total{{number_format($totalCollection,2)}}
Total Collection{{number_format($totalCollection,2)}}
Total Canceled{{number_format($totalReversal,2)}}
Print List of Checks @else

No Collection on This Date.

@endif
@stop