Files
Obsidian-Vault/Career/Others/Nicer Maintenance Mode.md
2025-10-25 20:11:21 +02:00

676 B

created, updated, tags
created updated tags
2025-03-12 14:12 2025-07-04 07:25
Laravel
 php artisan down --render="errors::maintenance"
php artisan vendor:publish --tag=laravel-errors
touch ./resources/views/errors/maintenance.blade.php
@extends('errors.minimal')  
  
@section('title', __('Planned Maintenance'))  
@section('message', __('Planned Maintenance'))  
@section('description', __('We will be back in a few minutes.'))
@hasSection('code')  
    <div class="px-4 text-lg text-gray-500 border-r border-gray-400 tracking-wider">  
        @yield('code')  
    </div>  
@endif