Page MenuHomeDevCentral

routes.php
No OneTemporary

routes.php

<?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

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)

Event Timeline