@if(Session::has('success'))
{{Session::get('success')}}
@php
Session::forget('success');
@endphp
@endif
@if(Session::has('danger'))
{{Session::get('danger')}}
@php
Session::forget('danger');
@endphp
@endif
| Sl |
M.R No. |
Customer |
Payment Method |
Description |
Amount |
Date |
Action |
@if(isset($money_receipts))
@foreach($money_receipts as $key => $data)
| {{ ++$key }} |
{{ $data->mr_id }} |
{{ $data->customer_name }} |
{{ $data->bank_name }} |
{{ $data->payment_by }} |
{{ $data->amount }} |
{{ $data->date }} |
Print
@if(Auth::user()->role == 'admin')
@endif
|
@endforeach
@endif