@extends('schoolLayout.app') @section('content')
@if (session('success')) @endif @if (session('error')) @endif

Fee Structure

PDF
@if (!empty($structures) && $structures->count()) @foreach ($structures as $structure) @if ($amounts) @foreach ($amounts as $amount) @if ($amount->class_id == $structure->class_id) @if ($amount->fee_type == 'admission_fee') @endif @if ($amount->fee_type == 'promotion_fee') @endif @if ($amount->fee_type == 'tuition_fee') @endif @if ($amount->fee_type == 'lab_fee') @endif @if ($amount->fee_type == 'exam_fee') @endif @if ($amount->fee_type == 'board_fee') @endif @if ($amount->fee_type == 'entertainment_fee') @endif @if ($amount->fee_type == 'other_fee') @endif @if ($amount->fee_type == 'books_charges') @endif @if ($amount->fee_type == 'annual_charges') @endif @if ($amount->fee_type == 'second_time_fee') @endif @else @continue @endif @endforeach @endif @endforeach @else @endif
Class Admission Fee Promotion Fee Tuition Fee Lab Fee Exam Fee Board Fee Entertainment Fee Other Fee Books Charges Annual Charges Second Time Fee Actions
{{ $structure->class->name }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }} Rs. {{ $amount->amount }}
No fee structures found.
@if (!empty($structures) && $structures->count()) {{ $structures->links('vendor.pagination.custom-pagination') }} @endif
{{-- model of the fee --}} @endsection @section('script') @endsection