@extends('layouts.admin') @section('content')
{{-- En-tête minimaliste --}}
Configuration

Thématiques des décisions

{{-- Barre d'outils flottante --}}
{{ $thematiques->count() }} éléments affichés
{{-- Liste Style "SaaS" --}}
@forelse($thematiques as $theme) @php $count = $theme->decisions_count ?? $theme->decisions()->count(); @endphp
{{-- Identifiant visuel --}}
{{ Str::upper(Str::substr($theme->nom, 0, 1)) }}
{{-- Contenu principal --}}
{{ $theme->nom }}
{{ $count }} décisions Ajouté le @if($theme->created_at) {{ is_string($theme->created_at) ? \Carbon\Carbon::parse($theme->created_at)->format('d/m/Y') : $theme->created_at->format('d/m/Y') }} @else N/A @endif
{{-- Actions --}}
{{-- Modal de visualisation stylisée --}} {{-- Modal Edit --}} @empty
Aucune thématique pour le moment.
@endforelse
{{-- Modal Add --}} @endsection