demo/app/Modules/Profile/UI/Web/routes.php
2023-03-23 18:50:47 +01:00

13 lines
325 B
PHP

<?php
Route::group(['prefix' => 'user/profile'], function() {
});
Route::group([
'namespace' => 'Admin',
'prefix' => 'admin/user/{uuid}/profile'
], function() {
Route::get('/', EditHandler::class)->name('admin.users.profile');
Route::post('/', UpdateHandler::class)->name('admin.users.profile.update');
});