authserver/testCAS/app/Http/Controllers/WelcomeController.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 namespace TestCAS\Http\Controllers;

class WelcomeController extends Controller
{
    /*
    |--------------------------------------------------------------------------
    | Welcome Controller
    |--------------------------------------------------------------------------
    |
    | This controller renders the "marketing page" for the application and
    | is configured to only allow guests. Like most of the other sample
    | controllers, you are free to modify or remove it as you desire.
    |
    */

    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
    }

    /**
     * Show the application welcome screen to the user.
     *
     * @return Response
     */
    public function index()
    {
        return view('welcome');
    }
}