Files
opensem/routes/Shop/Invoices.php
Ludovic CANDELLIER 0879b0abf0 add shipping rules
2023-07-16 14:45:42 +02:00

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