Feat: Updating FIle Services, Updating Order Views to list product extra options

This commit is contained in:
2026-09-25 10:08:57 +03:00
parent 2b8fe5764c
commit 6025ea4304
10 changed files with 332 additions and 13 deletions
@@ -5,7 +5,7 @@ use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
/**
* A generic, storage-backend-agnostic file registry — Modules\Core\Files\
* A generic, storage-backend-agnostic file registry — Modules\Core\File\
* Services\FileService's own backing table. `disk`/`path` are whatever
* Laravel's Storage facade already understands (local, s3, ...); this
* table adds what Flysystem itself has no concept of: who a file
@@ -28,7 +28,7 @@ return new class extends Migration
{
public function up(): void
{
Schema::create('file_uploads', function (Blueprint $table) {
Schema::create('files', function (Blueprint $table) {
$table->id();
$table->string('disk');
$table->string('path');
@@ -45,6 +45,6 @@ return new class extends Migration
public function down(): void
{
Schema::dropIfExists('file_uploads');
Schema::dropIfExists('files');
}
};