*/ public static function getDefaultPages(): array { return [ 'edit' => EditFiles::route('/edit/{path}'), 'search' => SearchFiles::route('/search/{searchTerm}'), // TODO: find better way? 'download' => DownloadFiles::route('/download/{path}'), 'index' => ListFiles::route('/{path?}'), ]; } public static function getNavigationLabel(): string { return trans('server/file.title'); } }