mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
16 lines
440 B
PHP
Executable File
16 lines
440 B
PHP
Executable File
@extends('errors.layout')
|
|
|
|
@section('title')
|
|
Be right back.
|
|
@endsection
|
|
|
|
@section('content')
|
|
@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
|