7 lines
249 B
PHP
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');
|
|
});
|