diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php
index f4706a5c4..7892fe8ae 100644
--- a/app/Http/Controllers/HomeController.php
+++ b/app/Http/Controllers/HomeController.php
@@ -1,10 +1,7 @@
- trans('common', [], null, 'en'),
- 'components' => trans('components', [], null, 'en'),
- 'entities' => trans('entities', [], null, 'en'),
- 'errors' => trans('errors', [], null, 'en')
+ 'common' => trans('common', [], 'en'),
+ 'components' => trans('components', [], 'en'),
+ 'entities' => trans('entities', [], 'en'),
+ 'errors' => trans('errors', [], 'en')
];
$translations = array_replace_recursive($enTrans, $translations);
}
diff --git a/resources/views/base.blade.php b/resources/views/base.blade.php
index bb00ce19e..4287014c2 100644
--- a/resources/views/base.blade.php
+++ b/resources/views/base.blade.php
@@ -17,7 +17,7 @@
-
+
@yield('head')
diff --git a/routes/web.php b/routes/web.php
index 4bd2b4a06..8259a633b 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -1,6 +1,6 @@
'auth'], function () {