@extends('layouts.admin') @section('title', 'Month Folders - Interactive') @section('content')

Month Folders

Add Month

{{ $monthFolders->total() }}

Total Months

{{ $monthFolders->where('category')->count() }}

Assigned Categories

12

Active Users

{{ $monthFolders->count() }}

Avg Age

Month Folders List
@forelse($monthFolders as $month) @empty @endforelse
ID Month Name Category Companies Created Actions
{{ $month->id }} {{ $month->name }} {{ $month->category?->name ?? 'Unassigned' }} {{ $month->companies_count ?? 0 }} {{ $month->created_at->diffForHumans() }}
@csrf @method('DELETE')

No Month Folders

Create months in category folders

Manage Categories
{{ $monthFolders->links() }}
@endsection