mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-17 11:48:28 +00:00
11 lines
362 B
PHP
11 lines
362 B
PHP
@extends('errors::minimal')
|
|
|
|
@section('code', '503')
|
|
|
|
@if (app()->isDownForMaintenance())
|
|
@section('title', __('We will be back soon!'))
|
|
@section('message', 'Sorry for the inconvenience but we are performing some maintenance at the moment.')
|
|
@else
|
|
@section('title', __('Service Unavailable'))
|
|
@section('message', $exception->getMessage())
|
|
@endif
|