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

Student Fund Report

{{-- {{ $Student->name ?? '' }} --}}
{{-- @if ($FromDate && $ToDate)

Date Range: {{ date('d-m-Y', strtotime($FromDate)) }} to {{ date('d-m-Y', strtotime($ToDate)) }}

@endif --}}

{{ $Batch->title ?? '' }}

{{ $Student->name ?? '' }}

@if($Transaction == 'deposit') Deposit @elseif($Transaction == 'withdraw') Withdraw @endif

{{-- --}}
{{$Student->name}} Admission No. {{$Student->admission_no}}
Batch: {{$CompletedBatchCourse->batchcourse->course->title}} [{{$CompletedBatchCourse->batchcourse->batch->title}}]

Cousre: {{$CompletedBatchCourse->courseperiod->title}}

Report Type: Individual Report

@php $si=0; @endphp @foreach ($StudentFunds as $StudentFund) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.AdmissionNo') }} {{ __('lng.Name') }} {{ __('lng.Date') }} Donation Withdraw {{ __('lng.Narration') }}
{{ ++$si }} {{ $StudentFund->Student->admission_no ?? '' }} {{ $StudentFund->Student->name ?? '' }} @if ($StudentFund->date) {{ date('d-m-Y', strtotime($StudentFund->date)) }} @endif {{ $StudentFund->inAmount }} {{ $StudentFund->outAmount }} {{ $StudentFund->narration }}
{{-- --}}
{{-- --}} @endsection