Premier commit

This commit is contained in:
jeremy bayse
2026-02-09 11:27:21 +01:00
commit 89a369964d
114 changed files with 17837 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<h1>Alertes de Contrats</h1>
<p>Les contrats suivants arrivent à échéance dans les 30 jours :</p>
<ul>
@foreach($expiringContracts as $contract)
<li>
<strong>{{ $contract->name }}</strong> ({{ $contract->provider }}) -
Expire le : {{ \Carbon\Carbon::parse($contract->end_date)->format('d/m/Y') }}
<a href="{{ route('contracts.show', $contract->id) }}">Voir</a>
</li>
@endforeach
</ul>
<p>Merci,<br>DSIGEST</p>