mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
10 lines
418 B
PHP
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');
|
|
});
|