@extends('layouts.admin') {{ config('app.name', 'Laravel') }} | Admin | Fee Mangements @include('datepicker') @section('main-content')
@if (Session::has('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Records / Fee Under Review

Fee Under Review
@include('components.datefilter')
@if (isset($data) && count($data) != 0) @foreach ($data as $key => $detail) {{-- --}}
Student
Name
Class
Name
Amount
Paid
Transaction
Date
View
{{ $key+1 }} {{ ucwords($detail->student->first_name) . ' ' . ucwords($detail->student->last_name) }} {{ ucwords($detail->class_name) }} {{ ucwords($review_fee_arr[$detail->id]->amountpaid) }} {{ dateformatter($review_fee_arr[$detail->id]->created_at) ?? 'N.A.' }}