firefly-iii/app/controllers/ReportController.php
2014-09-27 07:06:19 +02:00

18 lines
264 B
PHP

<?php
/**
* Class ReportController
*/
class ReportController extends BaseController
{
/**
*
*/
public function index()
{
return View::make('reports.index')->with('title','Reports')->with('mainTitleIcon','fa-line-chart');
}
}