diff --git a/routes/admin.php b/routes/admin.php index 0da9bca00..dfa4c6dca 100644 --- a/routes/admin.php +++ b/routes/admin.php @@ -1,5 +1,7 @@ 'uploads.', 'prefix' => 'uploads'], function () { Route::delete('{id}', 'Common\Uploads@destroy')->name('destroy'); }); diff --git a/routes/common.php b/routes/common.php index 1a7923edb..2d2a68c40 100644 --- a/routes/common.php +++ b/routes/common.php @@ -1,5 +1,7 @@ 'auth'], function () { Route::group(['as' => 'uploads.', 'prefix' => 'uploads'], function () { Route::get('{id}', 'Common\Uploads@get')->name('get'); diff --git a/routes/guest.php b/routes/guest.php index 998dc46df..5770411e2 100644 --- a/routes/guest.php +++ b/routes/guest.php @@ -1,5 +1,7 @@ 'auth'], function () { Route::get('login', 'Auth\Login@create')->name('login'); Route::post('login', 'Auth\Login@store'); diff --git a/routes/install.php b/routes/install.php index 8c60f3380..6bcfd0499 100644 --- a/routes/install.php +++ b/routes/install.php @@ -1,5 +1,7 @@ name('install.requirements'); diff --git a/routes/portal.php b/routes/portal.php index 8681b8293..35e349e0d 100644 --- a/routes/portal.php +++ b/routes/portal.php @@ -1,5 +1,7 @@ 'portal.'], function () { Route::get('invoices/{invoice}/print', 'Portal\Invoices@printInvoice')->name('invoices.print'); Route::get('invoices/{invoice}/pdf', 'Portal\Invoices@pdfInvoice')->name('invoices.pdf'); diff --git a/routes/signed.php b/routes/signed.php index a5cc59b32..00fc1bb59 100644 --- a/routes/signed.php +++ b/routes/signed.php @@ -1,5 +1,7 @@ name('signed.invoices.show'); Route::get('invoices/{invoice}/print', 'Portal\Invoices@printInvoice')->name('signed.invoices.print'); Route::get('invoices/{invoice}/pdf', 'Portal\Invoices@pdfInvoice')->name('signed.invoices.pdf'); diff --git a/routes/wizard.php b/routes/wizard.php index 3d290555f..69a744e89 100644 --- a/routes/wizard.php +++ b/routes/wizard.php @@ -1,5 +1,7 @@ 'wizard.'], function () { Route::get('companies', 'Wizard\Companies@edit')->name('companies.edit'); Route::patch('companies', 'Wizard\Companies@update')->name('companies.update');