Rapports clients mensuels
Un rapport par site (SEO + trafic + réalisations), imprimable en PDF.
Aucun rapport mensuel encore. Clique « Générer ce mois » (ou attend le 1er du mois).
@else
-
@foreach ($monthly as $file)
@php preg_match('/^mensuel-(.+)-(\d{4})-(\d{2})\.html$/', $file, $m);
$site = config('sites.'.($m[1] ?? '').'.name', $m[1] ?? $file);
$lbl = isset($m[2]) ? \Carbon\Carbon::createFromDate($m[2], $m[3], 1)->translatedFormat('F Y') : $file;
@endphp
- {{ $site }} · {{ $lbl }} Ouvrir ↗ @endforeach
Rapports SEO hebdomadaires
Générés automatiquement chaque lundi · sites sous 90 %.
@if ($weekly->isEmpty())Aucun rapport hebdomadaire pour l'instant.
@else
-
@foreach ($weekly as $file)
@php $stamp = preg_replace('/^seo-|\.html$/', '', $file);
try { $d = \Carbon\Carbon::createFromFormat('Y-m-d_His', $stamp)->translatedFormat('l j F Y · H:i'); }
catch (\Throwable $e) { $d = $file; }
@endphp
- {{ $d }} Ouvrir ↗ @endforeach