feat(event): implement admin date creation, rescheduling, and cancellation endpoints

This commit is contained in:
2026-09-11 12:28:51 -03:00
parent 106cf017dc
commit 96df431d60
9 changed files with 462 additions and 98 deletions

View File

@@ -8,4 +8,7 @@ Route::prefix('v1/adminapp/tenant')
->group(function (): void {
Route::get('event', [EventController::class, 'show']);
Route::put('event', [EventController::class, 'update']);
Route::post('event-dates', [EventController::class, 'storeDate']);
Route::post('event-dates/{eventDate}/reschedule', [EventController::class, 'rescheduleDate']);
Route::post('event-dates/{eventDate}/cancel', [EventController::class, 'cancelDate']);
});