10 lines
213 B
PHP
10 lines
213 B
PHP
@extends('errors.general')
|
|
|
|
@section('title', '503 Service Unavailable')
|
|
|
|
@section('content')
|
|
<h1>Be right back.</h1>
|
|
|
|
<p>详细信息:{{ $message or "Application is now in maintenance mode." }}</p>
|
|
@endsection
|