authserver/testCAS/app/Http/routes.php
author Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr>
Tue, 16 Jun 2015 11:30:44 +0200
changeset 6 4d2f10800d4b
parent 0 1afc9d2ab94d
child 8 5a0cbbe0922a
permissions -rw-r--r--
add scénario Enseignant + sources button

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