1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/controllers/HomeController.php
2013-12-07 20:45:00 +02:00

11 lines
155 B
PHP
Executable File

<?php
class HomeController extends BaseController {
protected $layout = 'master';
public function showWelcome()
{
return View::make('splash');
}
}