Files
opensem/routes/Shop/Customers.php
Ludovic CANDELLIER 49afb9ca4c Fix case typo
2020-04-15 15:40:57 +02:00

7 lines
167 B
PHP

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