Files
firefly-iii/app/controllers/ReportController.php

18 lines
264 B
PHP
Raw Normal View History

<?php
2014-08-10 15:01:46 +02:00
/**
* Class ReportController
*/
class ReportController extends BaseController
{
2014-08-10 15:01:46 +02:00
/**
*
*/
public function index()
{
2014-09-27 07:06:19 +02:00
return View::make('reports.index')->with('title','Reports')->with('mainTitleIcon','fa-line-chart');
}
}