authserver/testCAS/app/Http/routes.php
author Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr>
Thu, 02 Jul 2015 16:55:25 +0200
changeset 7 1a3fa80225b2
parent 0 1afc9d2ab94d
child 8 5a0cbbe0922a
permissions -rw-r--r--
add maquettes scénario enseignant

<?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']);