Some refactoring.

This commit is contained in:
James Cole
2018-06-21 18:58:27 +02:00
parent 1d162edb59
commit 50b599b1a9
6 changed files with 9 additions and 17 deletions

View File

@@ -51,9 +51,9 @@ class HomeController extends Controller
{
$title = (string)trans('firefly.administration');
$mainTitleIcon = 'fa-hand-spock-o';
$sandstorm = 1 === (int)getenv('SANDSTORM');
$sandstorm = 1 === (int)getenv('SANDSTORM');
return view('admin.index', compact('title', 'mainTitleIcon','sandstorm'));
return view('admin.index', compact('title', 'mainTitleIcon', 'sandstorm'));
}
/**