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