@extends('layouts.master') @section('content')
Copy Class Fees for next year.
Back
@csrf
{{ generateDropdown($classes, 'class="form-control select2 class_id" id="class_id" name="class_id" required', Route::current()->parameter('class_id') ?? '', "Select Class") }}
{{ generateDropdown($departments, 'class="form-control select2 department_id" id="department_id" name="department_id" required', Route::current()->parameter('department_id') ?? '', "Select Department") }}
{{ generateDropdown($years, 'class="form-control select2 year_id" id="year_id" name="year_id" required', Route::current()->parameter('year_id') ?? '', "Select Year") }}
@foreach ($feeTypes as $feeType) @if (($feeType->code != "TRANSPORT") && ($feeType->code != "HOSTEL")) @if ($feeType->code == "TUITION") id, $selectedFeeTypes) ? 'checked' : '' }}> @else @endif @if ($feeType->code!="TUITION") @endif @if ($feeType->code=="TUITION") @else @endif @endif @endforeach
Select Fee Type Amount
Tution Fee (Per Month)
id, $selectedFeeTypes) ? 'checked' : '' }}> {{ $feeType->title }} @php $inputEnable = array_key_exists($feeType->id, $selectedFeeTypes) ? '' : 'disabled'; $amount = array_key_exists($feeType->id, $selectedFeeTypes) ? $selectedFeeTypes[$feeType->id] : ''; @endphp
@endsection @section('scripts') @endsection