@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 / Payment Accepted

{{--
--}}
Fee Under Review
{{-- --}} @if(isset($data) && count($data) != 0) @foreach($data as $key => $detail) {{-- --}}
#Student
Name
Class
Name
Payment
Type
Amount
Paid
Transaction
Date
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.'}}