Files
opensem/routes/Shop/Invoices.php
2023-03-14 23:33:14 +01:00

8 lines
219 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');
});