mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-28 02:24:23 -05:00
Add a local preview route and test coverage for proxy-style failures, suppressing raw Livewire error responses and showing a user-friendly toast after gestures.
12 lines
364 B
PHP
12 lines
364 B
PHP
@extends('layouts.base')
|
|
@section('body')
|
|
{{-- Manual @livewireScripts disables Livewire's asset auto-injection, so the
|
|
styles (e.g. [wire\:loading] { display: none }) must be rendered manually too. --}}
|
|
@livewireStyles
|
|
@livewireScripts
|
|
<main class="h-full bg-gray-50 dark:bg-base">
|
|
{{ $slot }}
|
|
</main>
|
|
@parent
|
|
@endsection
|