@extends('backend.layouts.app') @section('title', 'Ledger History') @section('page-title', 'Ledger History') @section('page-breadcrumb', 'Ledger History') @section('content')
Ledger List
@csrf

@if(Auth::user()->user_type>4)
@else @endif
Ledger History - @php if($qdata['t_type']=="CR"){ echo "Wallet"; } else{ echo "Loan"; } @endphp
@php $i = 0; $j = 0; @endphp @foreach($fund_list as $row) @php if($row->t_type=="CR"){ $i = $i+$row->amount; } else{ $j = $j+$row->amount; } @endphp @php if(strlen($row->std_id)>1){ echo''; } else{ echo''; } @endphp @endforeach
Id User Name UserID Amount Amount Edit Remark Remark Edit T Type F Type ServiceType ServiceType Edit Student Details Service ID Service ID Edit Created At
{{$row->userID}} {{$row->first_name}} {{$row->last_name}} {{$row->user_id}} {{$row->amount}} {{$row->remark}} {{$row->t_type}} {{$row->credit_type}} {{$row->service_cat}} Student Details{{$row->service_id}} {{$row->created_at}}
Total Transactions during this period CR {{$i}} DR {{$j}}
@endsection @section('self_script') @endsection