[WIP] Working on orders & invoices

This commit is contained in:
Ludovic CANDELLIER
2022-08-19 22:04:44 +02:00
parent 1880b25407
commit dae8156164
32 changed files with 440 additions and 323 deletions

View File

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