feat(storage): implement S3 file upload and temporary URL generation functionality

This commit is contained in:
2026-06-25 14:23:34 -03:00
parent 3360e81e96
commit 049484dee5
7 changed files with 272 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
use App\Domains\StorageTest\Controllers\S3TestController;
use Illuminate\Support\Facades\Route;
Route::prefix('storage-test/s3')->group(function (): void {
Route::post('upload', [S3TestController::class, 'store']);
Route::get('temporary-url', [S3TestController::class, 'temporaryUrl']);
});