Files
opensem/routes/Shop/Customers.php
Ludovic CANDELLIER 7df2421373 restart
2022-11-11 13:05:40 +01:00

7 lines
227 B
PHP

<?php
Route::prefix('Clients')->name('Customers.')->group(function () {
Route::get('show/{id}', 'CustomerController@show')->name('show');
Route::get('profile/{id?}', 'CustomerController@profile')->name('profile');
});