{{-- Admin shell. Traditional Blade inheritance — pages use: @extends('layouts.app') @section('header') ... @endsection (optional page header) @section('content') ... @endsection @push('styles') / @push('scripts') (optional) (This replaced the old app-layout Blade component. A bonus of @extends: the child view is evaluated BEFORE the layout renders, so @push works anywhere in the file — under the component it silently dropped anything pushed after the closing tag.) --}}
@include('layouts.partials.head') @livewireStyles @stack('styles') @include('layouts.partials.scripts') {{-- Turbo-style top progress bar (styled in styles partial) --}}