2014-08-20 00:10:30 -05:00
|
|
|
<?php namespace App\Http\Controllers;
|
2013-01-11 15:14:07 -06:00
|
|
|
|
2014-11-24 11:42:29 -06:00
|
|
|
class WelcomeController extends Controller {
|
2013-01-11 15:14:07 -06:00
|
|
|
|
2014-11-29 13:55:38 -06:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2014-11-24 11:47:49 -06:00
|
|
|
/**
|
|
|
|
|
* Create a new controller instance.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function __construct()
|
|
|
|
|
{
|
|
|
|
|
$this->middleware('guest');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Show the application welcome screen to the user.
|
|
|
|
|
*
|
|
|
|
|
* @return Response
|
|
|
|
|
*/
|
2014-08-01 23:51:30 -05:00
|
|
|
public function index()
|
2013-01-11 15:14:07 -06:00
|
|
|
{
|
2014-11-24 11:42:29 -06:00
|
|
|
return view('welcome');
|
2013-01-11 15:14:07 -06:00
|
|
|
}
|
|
|
|
|
|
2014-03-15 10:14:55 +00:00
|
|
|
}
|