laravel , php artisan down 명령으로 maintenance mode로 진입했을때 표시할 메시지 변경
    503 Service Unavailable 메시지 변경 방법


* resources\views\errors\503.blade.php 파일 생성
    - 기본 파일

<!DOCTYPE html>
<html>
    <head>
        <title>Be right back.</title>

        <link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">

        <style>
            html, body {
                height: 100%;
            }

            body {
                margin: 0;
                padding: 0;
                width: 100%;
                color: #B0BEC5;
                display: table;
                font-weight: 100;
                font-family: 'Lato', sans-serif;
            }

            .container {
                text-align: center;
                display: table-cell;
                vertical-align: middle;
            }

            .content {
                text-align: center;
                display: inline-block;
            }

            .title {
                font-size: 72px;
                margin-bottom: 40px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="content">
                <div class="title">Be right back.</div>
            </div>
        </div>
    </body>
</html>

 

 

 

반응형

'Code > PHP' 카테고리의 다른 글

[php] array_walk , array_map 사용법  (0) 2019.09.05
[php] 이벤트 라이브러리  (0) 2019.08.09
[PHP] String Complex (curly) syntax  (0) 2019.04.05
[PHP] 시간 사용법  (0) 2019.04.01
PHP 7.3으로 업그레이드  (0) 2019.03.28
Posted by codens