@extends('admin/layouts/layoutMaster') @section('title', 'Other Fee Lists') @section('vendor-style') @endsection @section('content')
@if(session()->has('errors')) @endif
@if(request('search')) @endif
@foreach($fees as $fee) @endforeach
# Department Level Amount First Second
{{$loop->iteration}} {{ $fee->department_id != 0 ? $fee->department?->name : 'COURSE FORM' }} {{$fee->level."00"}} ₦{{number_format($fee->full_amount)}} ₦{{number_format($fee->first_semester_amount)}} ₦{{number_format($fee->second_semester_amount)}}
{{ $fees->links() }}
@section('page-script') @endsection @endsection