1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/controllers/HomeController.php

11 lines
159 B
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<?php
class HomeController extends BaseController {
protected $layout = 'master';
public function showWelcome()
{
return View::make('home.index');
}
}