Files
ponzi/app/Http/Controllers/WelcomeController.php
Taylor Otwell a9c9b202b0 Remove comment.
2014-11-24 12:24:01 -06:00

26 lines
370 B
PHP

<?php namespace App\Http\Controllers;
class WelcomeController extends Controller {
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest');
}
/**
* Show the application welcome screen to the user.
*
* @return Response
*/
public function index()
{
return view('welcome');
}
}