feat(scanner): implement ticket scanning functionality with controller, service, and routes

This commit is contained in:
2026-08-11 13:55:53 -03:00
parent e0f0fb1a72
commit 254faedf2c
10 changed files with 501 additions and 0 deletions

View File

@@ -9,3 +9,5 @@ Route::prefix('tenants/{tenant:codigo}')
Route::get('tickets', [TicketController::class, 'index']);
Route::post('tickets/pdf', [TicketController::class, 'downloadPdf']);
});
require __DIR__.'/scanner.php';