Files
firefly-iii/app/Http/Controllers/RuleController.php

41 lines
746 B
PHP
Raw Normal View History

2016-01-11 20:41:57 +01:00
<?php
/**
* RuleController.php
* Copyright (C) 2016 Sander Dorigo
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Http\Controllers;
use FireflyIII\Http\Requests;
use View;
/**
* Class RuleController
*
* @package FireflyIII\Http\Controllers
*/
class RuleController extends Controller
{
2016-01-12 20:56:53 +01:00
/**
* RuleController constructor.
*/
2016-01-11 20:41:57 +01:00
public function __construct()
{
parent::__construct();
View::share('title', trans('firefly.rules'));
View::share('mainTitleIcon', 'fa-random');
}
2016-01-12 20:56:53 +01:00
/**
* @return View
*/
2016-01-11 20:41:57 +01:00
public function index()
{
return view('rules.index');
}
}