11 lines
No EOL
155 B
PHP
Executable file
11 lines
No EOL
155 B
PHP
Executable file
<?php
|
|
|
|
class HomeController extends BaseController {
|
|
|
|
protected $layout = 'master';
|
|
|
|
public function showWelcome()
|
|
{
|
|
return View::make('splash');
|
|
}
|
|
} |