{{-- Fichier : resources/views/dashboard.blade.php --}} @extends("layouts.base") @section("title", __("dashboard.title")) @section("content") {{-- Conteneur principal du tableau de bord --}}
{{ __("dashboard.welcome", ["name" => Auth::user()->name]) }}
{{ __("dashboard.reason") }} : {{ $notif->data["reason"] ?? "-" }}
{{ __("dashboard.moderator") }} : {{ $notif->data["moderator"] ?? "-" }}
{{-- Afficher l'expiration seulement pour les suspensions --}} @if (isset($notif->data["expires_at_human"])){{ __("dashboard.expires") }} : {{ $notif->data["expires_at_human"] }}
@endif