openclassify/Modules/Profile/routes/web.php
GitHub Copilot 067db6eaa2 Fix auth routes, profile management, and test failures
Co-authored-by: fatihalp <219454+fatihalp@users.noreply.github.com>
2026-03-02 23:46:32 +00:00

10 lines
418 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use Modules\Profile\Http\Controllers\ProfileController;
Route::middleware('auth')->prefix('profile')->name('profile.')->group(function () {
Route::get('/', [ProfileController::class, 'show'])->name('show');
Route::get('/edit', [ProfileController::class, 'edit'])->name('edit');
Route::put('/extended', [ProfileController::class, 'update'])->name('update');
});