@extends('dashboard.master') @section('title', 'Fees Assign Details') @section('content')
Fees Assign Details
Class Name {{ $data->class->name ?? '--' }}
Session {{ $data->first()->studentsession->name ?? '--' }}
@php $sn = 1; @endphp @foreach($details as $month => $items) @endforeach
SN Month Name Amount
{{ $sn++ }} {{ \Carbon\Carbon::parse($month)->format('F, Y') }} @foreach($items as $fee) @endforeach
{{ $fee->fees->name ?? '' }} {{ $fee->amount }}
@endsection