mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +00:00
First view for the return of the repeated expenses.
This commit is contained in:
15
app/controllers/RepeatedExpenseController.php
Normal file
15
app/controllers/RepeatedExpenseController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
class RepeatedExpenseController extends BaseController
|
||||
{
|
||||
public function __construct() {
|
||||
View::share('title','Repeated expenses');
|
||||
View::share('mainTitleIcon','fa-rotate-left');
|
||||
}
|
||||
public function index()
|
||||
{
|
||||
|
||||
$subTitle = 'Overview';
|
||||
return View::make('repeatedexpense.index',compact('subTitle'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user