authserver/testCAS/app/Http/routes.php
changeset 0 1afc9d2ab94d
child 8 5a0cbbe0922a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/authserver/testCAS/app/Http/routes.php	Wed Apr 01 15:31:12 2015 +0200
@@ -0,0 +1,17 @@
+<?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']);