Fix usage of config function in error templates. Partially fixes #1167

This commit is contained in:
DariusIII
2021-05-18 13:17:03 +02:00
parent 846465d967
commit 239bf8c0e1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,6 +5,6 @@
@endsection
@section('content')
{{ \App\Models\config('app.name') }} <br><br><br>
{{ config('app.name') }} <br><br><br>
<b>Acess denied! You're permissions and/or role do not allow you to access this page</b>
@endsection
+1 -1
View File
@@ -5,6 +5,6 @@
@endsection
@section('content')
{{ \App\Models\config('app.name') }} <br><br><br>
{{ config('app.name') }} <br><br><br>
<b>You are not logged in!</b> <br>Please <a href='{!! url('/login'); !!}'>login</a>
@endsection