add visa/master module

This commit is contained in:
2024-09-04 19:50:40 +05:00
parent be39810f62
commit 837d2a4704
17 changed files with 476 additions and 17 deletions

View File

@@ -20,3 +20,9 @@ Route::post('auth/login', [ApiAuthController::class, 'login']);
Route::post('auth/verify', [ApiAuthController::class, 'verify']);
Route::middleware('auth:sanctum')
->post('auth/delete-user', [ApiAuthController::class, 'delete']);
Route::middleware(['auth:sanctum', 'banned'])->group(function () {
// Profile...
// Route::get('profile', [ProfileController::class, 'index']);
// Route::post('profile', [ProfileController::class, 'store']);
});