@extends('layouts.app') @section('title', 'Categories') @section('content')

Category Management

Back to Inventory
Create New Category
@csrf
Existing Categories
@foreach($categories as $category)
{{ $category->name }}
{{ $category->applications()->count() }} linked applications
@csrf
@endforeach @if($categories->isEmpty())

No categories found.

@endif
@endsection