@extends('dashboard.master') @section('title', 'Edit Hostel Fee Assign ') @section('content')
Edit Hostel Fee Assign
@csrf @method('PUT')
@foreach($details as $month => $items) @endforeach
SN Month Name Amount
{{ $loop->iteration }} {{ \Carbon\Carbon::parse($month)->format('F, Y') }} @foreach($items as $fee) @endforeach
{{ $fee->fees->name ?? '' }}
@endsection