@extends('layouts.admin') @section('title', $year->display_year . ' - ' . $company->name) @section('content')
{{-- Category Creation Form (Admin Only) --}} @if(auth()->user()->hasRole('admin'))
➕ Add New Category
@csrf
@endif {{-- Existing Categories --}} @if($categories->count() > 0)
📁 Existing Categories
@foreach($categories as $category) @endforeach
@else

No Categories Found

Add your first category to get started

@endif
⬅ Back to Company
@endsection