feat(ticket): add TicketController, TicketResource, and related routes with tests

This commit is contained in:
2026-07-21 14:56:17 -03:00
parent 38f74739da
commit e1a67fd9f3
5 changed files with 170 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
use App\Domains\Ticket\Controllers\TicketController;
use Illuminate\Support\Facades\Route;
Route::prefix('tenants/{tenant:codigo}')
->middleware('auth:sanctum')
->group(function (): void {
Route::get('tickets', [TicketController::class, 'index']);
});