@extends('dashboard.master') @section('title', 'Create Hostel Fee Assign ') @push('css') @endpush @section('content')
Create Hostel Fee Assign
@csrf
@php $startMonth = \Carbon\Carbon::createFromFormat('Y-m', $data['from_month']); @endphp @for($i = 0; $i < $data['month_for']; $i++) @endfor
SN Month Name Amount
{{ $i + 1 }} {{ $startMonth->copy()->addMonthsNoOverflow($i)->format('F, Y') }} @foreach ($fees as $fee) @endforeach
{{ $fee->name }}
@push('js') @endpush @endsection