mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06: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');
|
||
|
}
|
||
|
|
||
|
}
|