author | durandn |
Tue, 22 Sep 2015 10:46:31 +0200 | |
changeset 160 | c9cf4845e6a5 |
parent 8 | 5a0cbbe0922a |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
||
3 |
/* |
|
4 |
|-------------------------------------------------------------------------- |
|
5 |
| Application Routes |
|
6 |
|-------------------------------------------------------------------------- |
|
7 |
| |
|
8 |
| Here is where you can register all of the routes for an application. |
|
9 |
| It's a breeze. Simply tell Laravel the URIs it should respond to |
|
10 |
| and give it the controller to call when that URI is requested. |
|
11 |
| |
|
12 |
*/ |
|
13 |
||
14 |
Route::get('/', 'WelcomeController@index'); |
|
8
5a0cbbe0922a
CAS Authentication (normal and proxy) + local Homestead vm
durandn
parents:
0
diff
changeset
|
15 |
Route::get('pgtcallback', ['as' => 'casstorepgt', 'uses' => 'WelcomeController@storePGT']); |
0 | 16 |
Route::get('home', ['as' => 'index', 'uses' => 'HomeController@index']); |
17 |
Route::get('logout', ['as' => 'casLogout', 'uses' => 'HomeController@logout']); |