@extends('dashboard.master') @section('title', 'Edit Hostel Fee Assign') @push('css') @endpush @section('content')
Edit Hostel Fee Assign
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{-- @method('PUT') --}} @csrf
@php @endphp
{{-- @dd($selectedFees) --}} @php $groupedFees = $selectedFees->groupBy('month'); @endphp @foreach ($groupedFees as $month => $fees) {{-- Month header --}} {{-- Fees for this month --}} @foreach ($fees as $fee) @endforeach @endforeach
Title Amount
{{ \Carbon\Carbon::parse($month . '-01')->format('F Y') }}
{{ $fee->name }}
@endsection @push('js') @endpush