@extends('layouts.dashboard') @section('title', 'Project Categories') @section('content')
entries

Project Categories

@foreach ($categories as $category) @endforeach
S/N Category Name Parent Category Added By Actions
{{ $categories->firstItem() + $loop->index }} {{ $category->name }} {{ $category->parent ? $category->parent->name : $category->name }} On: {{ $category->created_at->format('d-m-Y') }}
By: {{ $category->creator->name ?? 'Unknown' }}
{{ $categories->links() }}
@endsection