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

7 lines
164 B
PHP

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