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