added description to routes
This commit is contained in:
parent
849c48a6f2
commit
0b4451ebeb
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
// 'admin' middleware applied via App\Providers\Route
|
||||
|
||||
Route::group(['as' => 'uploads.', 'prefix' => 'uploads'], function () {
|
||||
Route::delete('{id}', 'Common\Uploads@destroy')->name('destroy');
|
||||
});
|
||||
|
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
// 'common' middleware applied via App\Providers\Route
|
||||
|
||||
Route::group(['middleware' => 'auth'], function () {
|
||||
Route::group(['as' => 'uploads.', 'prefix' => 'uploads'], function () {
|
||||
Route::get('{id}', 'Common\Uploads@get')->name('get');
|
||||
|
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
// 'guest' middleware applied via App\Providers\Route
|
||||
|
||||
Route::group(['prefix' => 'auth'], function () {
|
||||
Route::get('login', 'Auth\Login@create')->name('login');
|
||||
Route::post('login', 'Auth\Login@store');
|
||||
|
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
// 'install' middleware applied via App\Providers\Route
|
||||
|
||||
Route::get('/', 'Install\Requirements@show');
|
||||
Route::get('requirements', 'Install\Requirements@show')->name('install.requirements');
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
// 'portal' middleware applied via App\Providers\Route
|
||||
|
||||
Route::group(['as' => 'portal.'], function () {
|
||||
Route::get('invoices/{invoice}/print', 'Portal\Invoices@printInvoice')->name('invoices.print');
|
||||
Route::get('invoices/{invoice}/pdf', 'Portal\Invoices@pdfInvoice')->name('invoices.pdf');
|
||||
|
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
// 'signed' middleware applied via App\Providers\Route
|
||||
|
||||
Route::get('invoices/{invoice}', 'Portal\Invoices@signed')->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');
|
||||
|
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
// 'wizard' middleware applied via App\Providers\Route
|
||||
|
||||
Route::group(['as' => 'wizard.'], function () {
|
||||
Route::get('companies', 'Wizard\Companies@edit')->name('companies.edit');
|
||||
Route::patch('companies', 'Wizard\Companies@update')->name('companies.update');
|
||||
|
Loading…
x
Reference in New Issue
Block a user