@extends('adminlte::page')
@section('title', 'Fee Calculator')
@section('content_header')
Fee Calculator
@stop
@section('content')
@php
$fee = $data[0] ?? null;
@endphp
| No. |
Fee Name |
Sections |
@php
$i= 1;
@endphp
@foreach ($data as $fee)
| {{$i}}. |
{{@$fee->fee_content_name}} |
Fee Category
Content List
|
@php
$i++;
@endphp
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop