@extends('errors::customized-layout') @php $template = \App\Models\HttpStatusTemplate::firstWhere('code', 503) @endphp @section('title', $template?->title ?? __('Service Unavailable')) @section('header') {!! $template?->header !!} @endsection @section('body') {!! $template?->body ?? __('Service Unavailable') !!} @endsection @section('footer') {!! $template?->footer !!} @endsection @section('background_color', $template?->background_color) @section('code', '503')