This commit is contained in:
2024-09-09 21:51:40 +05:00
parent fc697f6318
commit bd992d87fb
7 changed files with 72 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
<?php
use App\Http\Controllers\ProfileController;
use App\Modules\ApiAuth\Controllers\ApiAuthController;
use Illuminate\Support\Facades\Route;
@@ -23,6 +24,6 @@ Route::middleware('auth:sanctum')
Route::middleware(['auth:sanctum', 'banned'])->group(function () {
// Profile...
// Route::get('profile', [ProfileController::class, 'index']);
// Route::post('profile', [ProfileController::class, 'store']);
Route::get('profile', [ProfileController::class, 'index']);
Route::post('profile', [ProfileController::class, 'store']);
});