mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 07:53:16 +00:00
Start with new controller for rule groups.
This commit is contained in:
19
app/Http/Controllers/RuleGroupController.php
Normal file
19
app/Http/Controllers/RuleGroupController.php
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace FireflyIII\Http\Controllers;
|
||||||
|
|
||||||
|
use View;
|
||||||
|
/**
|
||||||
|
* Class RuleGroupController
|
||||||
|
* @package FireflyIII\Http\Controllers
|
||||||
|
*/
|
||||||
|
class RuleGroupController extends Controller
|
||||||
|
{
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
View::share('title', trans('firefly.rules'));
|
||||||
|
View::share('mainTitleIcon', 'fa-random');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user