added more route instructions

This commit is contained in:
denisdulici
2020-01-31 00:23:09 +03:00
parent 9262ef5fb4
commit 7d9befedbf
9 changed files with 45 additions and 21 deletions

View File

@ -1,6 +1,11 @@
<?php
// 'guest' middleware applied via App\Providers\Route
/**
* 'guest' middleware applied to all routes
*
* @see \App\Providers\Route::mapGuestRoutes
* @see \modules\PaypalStandard\Routes\guest.php for module example
*/
Route::group(['prefix' => 'auth'], function () {
Route::get('login', 'Auth\Login@create')->name('login');