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

{{$Student->name}}'s Fund Report

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

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

@endif --}} {{--

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

--}}
{{-- --}}
{{$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 ($Student->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 }}
Total: {{ $TotalDeposit }} {{ $TotalWithdraw }}
Grand Total: {{ $TotalAmount }} {{ $Journal }}
{{-- --}}
{{-- --}} @endsection