authserver/testCAS/app/Http/routes.php
author ymh <ymh.work@gmail.com>
Wed, 01 Apr 2015 15:31:12 +0200
changeset 0 1afc9d2ab94d
child 8 5a0cbbe0922a
permissions -rw-r--r--
first commit of cas auth env

<?php

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for 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.
|
*/

Route::get('/', 'WelcomeController@index');

Route::get('home', ['as' => 'index', 'uses' => 'HomeController@index']);
Route::get('logout', ['as' => 'casLogout', 'uses' => 'HomeController@logout']);