blessing-skin-server/resources/views/errors/503.tpl

10 lines
247 B
PHP
Raw Normal View History

2016-08-28 10:05:21 +08:00
@extends('errors.general')
@section('title', '503 Service Unavailable')
@section('content')
2016-09-28 13:23:07 +08:00
<h1>Be right back.</h1>
2016-08-28 10:05:21 +08:00
2016-09-28 13:23:07 +08:00
<p>{{ trans('errors.exception.message', ['msg' => $exception->getMessage() ?: trans('errors.http.msg-503')]) }}</p>
2016-08-28 10:05:21 +08:00
@endsection