@foreach($documents as $document)
@php
$extension = strtolower(pathinfo($document->filename, PATHINFO_EXTENSION));
$iconColor = match($extension) {
'pdf' => 'text-red-600 dark:text-red-400',
'jpg', 'jpeg', 'png', 'gif', 'webp' => 'text-blue-600 dark:text-blue-400',
'doc', 'docx' => 'text-blue-600 dark:text-blue-400',
'xls', 'xlsx' => 'text-green-600 dark:text-green-400',
default => 'text-gray-600 dark:text-gray-400',
};
$iconSvg = match($extension) {
'pdf' => 'M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z',
'jpg', 'jpeg', 'png', 'gif', 'webp' => 'M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z',
'doc', 'docx' => 'M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z',
'xls', 'xlsx' => 'M3 10h18M3 14h18m-9-4v8m-7 0h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z',
default => 'M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z',
};
@endphp
@if($document->description)
{{ $document->description }}
@endif
{{ number_format($document->size / 1024, 0) }} Ko
@if($document->published_at)
{{ $document->published_at->format('d/m/Y') }}
@endif
@endforeach
Aucun document disponible dans cette catégorie.
@endif
{{-- Pagination --}}
@if($documents->hasPages())