Files
opensem/routes/Shop/Customers.php
Ludovic CANDELLIER 06cfb92757 [WIP] Order process
2022-07-03 22:38:08 +02:00

7 lines
249 B
PHP

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