@extends('layouts.adminapp') @section('title') {{ __('lng.SetFeesMonthly') }} - {{ __('lng.SetFee') }} @endsection @section('active_student', 'active') @section('open_student', 'open') @section('active_set_fee', 'active') @section('content')

{{ __('lng.SetFeesMonthly') }}

@csrf
{{ __('lng.SetFeeInMonth') }} : {{ $Class->title }}
@error('batch_year')
{{ $message }}
@enderror
@error('month')
{{ $message }}
@enderror
@error('amount')
{{ $message }}
@enderror
@error('additional_charge')
{{ $message }}
@enderror
@error('narration')
{{ $message }}
@enderror
{{ $Class->title }} : {{ __('lng.MonthlyFeeDetails') }}
@php $si=0; @endphp @foreach ($FeeDetails as $FeeDetail) @php $month = date("F-Y",strtotime($FeeDetail->month));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.BatchYear') }} {{ __('lng.Month') }} {{ __('lng.Amount') }} {{ __('lng.AdditionalCharge') }} {{ __('lng.TotalAmount') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $FeeDetail->batch_year }} {{ $month }} @currency($FeeDetail->amount) @currency($FeeDetail->additional_charge) {{ $FeeDetail->amount + $FeeDetail->additional_charge }}.00
@csrf

{{ __('lng.Showing') }} {{ $FeeDetails->count() }} {{ __('lng.Items') }}

@endsection