7 lines
147 B
PHP
7 lines
147 B
PHP
<?php
|
|
|
|
Route::prefix('Factures')->name('Invoices.')->group(function () {
|
|
Route::get('show/{id}', 'InvoiceController@show')->name('show');
|
|
});
|
|
|