Update 503.blade.php for better information display

This commit is contained in:
DariusIII
2018-05-22 09:50:16 +02:00
parent 7b067b207f
commit 9830c094d9
2 changed files with 8 additions and 1 deletions
+1
View File
@@ -1,4 +1,5 @@
2018-05-22 DariusIII
* Chg: Update 503.blade.php for better information display
* Chg: Update symfony components and psy/psych to latest versions
2018-05-21 DariusIII
* Chg: Update api description template to include apikey in links
+7 -1
View File
@@ -5,5 +5,11 @@
@endsection
@section('content')
Service temporarily unavailable. Please try again later!
@if(!empty($exception->getMessage()))
{{ $exception->getMessage() }}
@elseif(App::isDownForMaintenance() && empty($exception->getMessage()))
We are currently performing scheduled maintenance. We will be back shortly.
@else
Service temporarily unavailable. Please try again later!
@endif
@endsection