@extends('layouts.admin') @section('title', 'Catégories') @section('content') {{-- Header --}}

Catégories

{{ $categories->count() }} catégorie(s) au total

Nouvelle catégorie
{{-- Barre de recherche --}}
@if($search) × @endif
{{-- Tableau --}}
@forelse($categories as $category) @empty @endforelse
Ordre Nom Chantiers Actions
{{ $category->order }} {{ $category->name }} @if($category->projects_count > 0) {{ $category->projects_count }} @else 0 @endif
Modifier @if($category->projects_count === 0)
@csrf @method('DELETE')
@else Supprimer @endif

@if($search) Aucune catégorie ne correspond à « {{ $search }} ». Voir toutes @else Aucune catégorie. Créer la première @endif

@endsection