feat(forms): implement MerchandiseFormController, MerchandiseFormService, and MerchandiseFormResource for managing merchandise options

This commit is contained in:
2026-08-10 09:28:52 -03:00
parent 63f98b5da2
commit 00489c14d3
6 changed files with 194 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
<?php
use App\Domains\Forms\Controllers\AdminApp\EventFormController;
use App\Domains\Forms\Controllers\AdminApp\MerchandiseFormController;
use App\Domains\Forms\Controllers\AdminApp\SaleFormController;
use App\Domains\Forms\Controllers\AdminApp\StaffFormController;
use Illuminate\Support\Facades\Route;
@@ -11,4 +12,8 @@ Route::prefix('v1/adminapp/forms')
Route::get('event', EventFormController::class);
Route::get('sale', SaleFormController::class);
Route::get('staff', StaffFormController::class);
Route::get(
'fiesta-futbol-infantil/merchandise',
MerchandiseFormController::class
);
});