@yield('title', 'My Laravel App')
{{-- Assets (Vite) --}}
@vite(['resources/css/app.css', 'resources/js/app.js'])
{{--
On mobile: body is a block column (flex-col) so the fixed topbar
(rendered inside the sidebar include) sits above everything.
The gets pt-16 on mobile to clear the fixed topbar height,
reset to pt-0 on md+ where the sidebar is static.
--}}
@include('layouts.sidebar')
@yield('content')