@extends('admin.layout') @section('title', 'Catégories / Groupes') @section('content')
@forelse($groups as $g) @empty @endforelse
Nom Détail Section Membres Statut Actions
{{ $g->name }}
{{ $g->slug }}
{{ Str::limit($g->detail, 50) ?: '—' }} {{ $g->section }} {{ $g->userGroups()->count() }} @if($g->is_active) Active @else Désactivée @endif
@csrf
@csrf @method('DELETE')
Aucune catégorie. Créer une catégorie
@endsection