{{-- Document Row Partial --}} @php $extension = pathinfo($doc->docname, PATHINFO_EXTENSION); $icons = [ 'docx' => 'fas fa-file-word text-primary', 'doc' => 'fas fa-file-word text-primary', 'ppt' => 'fas fa-file-powerpoint text-orange', 'pptx' => 'fas fa-file-powerpoint text-orange', 'pdf' => 'fas fa-file-pdf text-danger', 'xls' => 'fas fa-file-excel text-success', 'xlsx' => 'fas fa-file-excel text-success', 'csv' => 'fas fa-file-csv text-success', 'png' => 'fas fa-file-image text-info', 'jpg' => 'fas fa-file-image text-info', 'jpeg' => 'fas fa-file-image text-info', 'default' => 'far fa-file text-secondary', ]; $fileIcon = $icons[$extension] ?? $icons['default']; $filename = pathinfo($doc->docname)['filename']; @endphp