@extends('backend.layout') @section('content')
@if (Session::has('success'))
×
{{ Session::get('success') }}
@endif
Excel Summary
UPLOAD NEW
Date
business
Name
CR
Number
Total
Cheque
Total
Cash
Total
Return
Net
Total
Amount
In QR
Status
Payment
Balance
Amount
Actions
@foreach($data as $single)
{{date('j F, Y', strtotime($single->date))}}
{{$single->business_name}}
{{$single->cr_number}}
QAR {{$single->cheque_amount}}
QAR {{$single->cash_amount}}
QAR {{$single->return_amount}}
QAR {{$single->total_sum}}
QAR {{$single->amount_in_qr}}
@if($single->payment_status == 0 )
Not Initiated @elseif($single->payment_status == 2 )
Partially Paid @else
Payment Completed @endif
QAR {{$single->balance_amount}}
@endforeach
@endsection