Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F14041050
routes.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
routes.php
View Options
<?php
/*
|--------------------------------------------------------------------------
| Routes File
|--------------------------------------------------------------------------
|
| Here is where you will register all of the routes in an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/
//Allows to external tool to ping your instalation and know if the site is up.
Route
::
get
(
'status'
,
function
()
{
return
"ALIVE"
;
});
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| This route group applies the "web" middleware group to every route
| it contains. The "web" middleware group is defined in your HTTP
| kernel and includes session state, CSRF protection, and more.
|
*/
Route
::
group
([
'middleware'
=>
'web'
],
function
()
{
AuthGrove\Http\Controllers\Auth\AuthController
::
registerRoutes
();
Route
::
get
(
'/'
,
'LoginDashboardController@index'
);
});
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Nov 28, 17:47 (18 h, 11 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3188917
Default Alt Text
routes.php (1 KB)
Attached To
Mode
rGROVE Auth Grove
Attached
Detach File
Event Timeline
Log In to Comment