Files
opensem/routes/Shop/Customers.php
2022-08-19 22:04:44 +02:00

7 lines
229 B
PHP

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