10 lines
247 B
PHP
10 lines
247 B
PHP
@extends('errors.general')
|
|
|
|
@section('title', '503 Service Unavailable')
|
|
|
|
@section('content')
|
|
<h1>Be right back.</h1>
|
|
|
|
<p>{{ trans('errors.exception.message', ['msg' => $exception->getMessage() ?: trans('errors.http.msg-503')]) }}</p>
|
|
@endsection
|