# Alerte d'échéance Bonjour, Ceci est un message automatique pour vous informer que les éléments suivants arrivent à échéance dans les **30 prochains jours**. @if($contrats->isNotEmpty()) ## 📄 Contrats | Titre | Fournisseur | Échéance | | :--- | :--- | :--- | @foreach($contrats as $contrat) | {{ $contrat->titre }} | {{ $contrat->fournisseur?->nom ?? 'N/A' }} | {{ $contrat->date_echeance->format('d/m/Y') }} | @endforeach @endif @if($licences->isNotEmpty()) ## 🔑 Licences | Nom | Fournisseur | Expiration | | :--- | :--- | :--- | @foreach($licences as $licence) | {{ $licence->nom }} | {{ $licence->fournisseur?->nom ?? 'N/A' }} | {{ $licence->date_expiration->format('d/m/Y') }} | @endforeach @endif @if($assets->isNotEmpty()) ## 💻 Matériels (Garantie) | Nom | Modèle | Fin Garantie | | :--- | :--- | :--- | @foreach($assets as $asset) | {{ $asset->nom }} | {{ $asset->modele }} | {{ $asset->date_fin_garantie->format('d/m/Y') }} | @endforeach @endif @if($domaines->isNotEmpty()) ## 🌐 Domaines | Nom | Prestataire | Échéance | | :--- | :--- | :--- | @foreach($domaines as $domaine) | {{ $domaine->nom }} | {{ $domaine->prestataire ?? 'N/A' }} | {{ $domaine->date_echeance->format('d/m/Y') }} | @endforeach @endif Accéder au tableau de bord
{{ config('app.name') }}