count($files) + 1, 'name' => $item, 'type' => $fileType, 'extension' => $extension, 'size' => $fileSize, 'modified' => date('Y-m-d H:i:s', filemtime($fullPath)), 'path' => $relativePath, 'full_path' => $fullPath ]; } } } } // Dosyaları tarihe göre sırala (en yeni önce) usort($files, function($a, $b) { return strtotime($b['modified']) - strtotime($a['modified']); }); ?> @if(empty($files))
No files found in this folder

Path: {{ $folderPath }}

@else
@endif