@extends('layouts.template') @section('template')

LIST MONEY RECEIPT

@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
@if(isset($money_receipts)) @foreach($money_receipts as $key => $data) @endforeach @endif
Sl M.R No. Customer Payment Method Description Amount Date Action
{{ ++$key }} {{ $data->mr_id }} {{ $data->customer_name }} {{ $data->bank_name }} {{ $data->payment_by }} {{ $data->amount }} {{ $data->date }} Print @if(Auth::user()->role == 'admin')
{{ method_field('DELETE') }} {{ csrf_field() }}
@endif
@endsection