@stack('styles')

@yield('page-title', '管理后台')

{{ now()->format('Y-m-d H:i') }} @php $env = app()->environment(); $badgeClass = 'bg-secondary'; if (in_array($env, ['production-cn', 'production-hk', 'production-tw', 'production'])) { $badgeClass = 'bg-danger'; } elseif ($env === 'test') { $badgeClass = 'bg-warning text-dark'; } elseif ($env === 'local') { $badgeClass = 'bg-success'; } @endphp {{ $env }}
@yield('content')
@stack('scripts') @yield('scripts')