authserver/testCAS/app/Http/Controllers/WelcomeController.php
changeset 0 1afc9d2ab94d
child 8 5a0cbbe0922a
equal deleted inserted replaced
-1:000000000000 0:1afc9d2ab94d
       
     1 <?php namespace TestCAS\Http\Controllers;
       
     2 
       
     3 class WelcomeController extends Controller
       
     4 {
       
     5     /*
       
     6     |--------------------------------------------------------------------------
       
     7     | Welcome Controller
       
     8     |--------------------------------------------------------------------------
       
     9     |
       
    10     | This controller renders the "marketing page" for the application and
       
    11     | is configured to only allow guests. Like most of the other sample
       
    12     | controllers, you are free to modify or remove it as you desire.
       
    13     |
       
    14     */
       
    15 
       
    16     /**
       
    17      * Create a new controller instance.
       
    18      *
       
    19      * @return void
       
    20      */
       
    21     public function __construct()
       
    22     {
       
    23     }
       
    24 
       
    25     /**
       
    26      * Show the application welcome screen to the user.
       
    27      *
       
    28      * @return Response
       
    29      */
       
    30     public function index()
       
    31     {
       
    32         return view('welcome');
       
    33     }
       
    34 }