mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Start with new controller for rule groups.
This commit is contained in:
parent
daf65cb387
commit
466d739da8
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');
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user