post('auth/delete-user', [ApiAuthController::class, 'delete']); Route::middleware(['auth:sanctum', 'not_banned'])->group(function () { // Profile... Route::get('profile', [ProfileController::class, 'index']); Route::post('profile', [ProfileController::class, 'store']); });