mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 06:23:12 -06:00
18 lines
264 B
PHP
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');
|
|
}
|
|
|
|
} |