@extends('layouts.app') @section('title', 'Catégories') @section('breadcrumb', 'Réglages / Catégories') @section('content') @if(session('success'))
{{ session('success') }}
@endif
@csrf
@foreach($familles as $f)
{{ $f->label }}
@forelse($f->categories as $c)
{{ $c->code }} {{ $c->label }}
@csrf @method('DELETE')
@empty Aucune catégorie @endforelse
@endforeach
@endsection