mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 03:39:00 +00:00
19 lines
365 B
PHP
19 lines
365 B
PHP
![]() |
<?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');
|
||
|
}
|
||
|
|
||
|
}
|