@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
{{-- --}} {{-- --}} @if (isset($data) && count($data) != 0) @foreach ($data as $key => $detail) {{-- --}} {{-- --}}
#Student
Name
Class
Name
Payment
Status
Amount
Paid
Transaction
Date
Overdue
Payments
View
{{ $key+1 }} {{ ucwords($detail->student->first_name) . ' ' . ucwords($detail->student->last_name) }} {{ ucwords($detail->class_name) }} @if ($review_fee_arr[$detail->id]->duration == null) N.A. @elseif ($review_fee_arr[$detail->id]->duration == 1) Monthly @elseif ($review_fee_arr[$detail->id]->duration == 3) Quarterly @elseif ($review_fee_arr[$detail->id]->duration == 6) Semi-Annual @elseif ($review_fee_arr[$detail->id]->duration == 12) Annual @endif ₹ {{ $review_fee_arr[$detail->id]->amountpaid }} {{ dateformatter($review_fee_arr[$detail->id]->created_at) ?? 'N.A.' }} @if (array_key_exists($detail->id, $fee_pending_month)) Since January 1970 @else N.A. @endif