Make folders selectable and downloadable with item count and sharing status.
Deploy Ladill Transfer / deploy (push) Successful in 35s

Folder rows match the file table layout, support zip download, and participate in bulk selection, share, and copy-link actions.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-08 22:21:39 +00:00
co-authored by Cursor
parent 449b9dc2ff
commit be3b719437
5 changed files with 278 additions and 67 deletions
+1
View File
@@ -56,6 +56,7 @@ Route::middleware(['auth'])->group(function () {
Route::get('/files', [FilesController::class, 'index'])->name('transfer.files.index');
Route::post('/files/folders', [FilesController::class, 'storeFolder'])->name('transfer.files.folders.store');
Route::get('/files/folders/{folder}/download', [FilesController::class, 'downloadFolder'])->name('transfer.files.folders.download');
Route::post('/files/upload/check', [FilesController::class, 'checkUpload'])->name('transfer.files.upload.check');
Route::post('/files/upload', [FilesController::class, 'storeUpload'])->name('transfer.files.upload');
Route::get('/files/open-in-email', [FilesController::class, 'openInEmail'])->name('transfer.files.open-in-email');