{{-- resources/views/layouts/horizontalLayoutMaster.blade.php --}} @yield('title', config('app.name')) {{-- Fonts --}} {{-- Bootstrap CSS (Optional if not already included) --}} {{-- Vendor & App CSS --}} @stack('vendor-style') @stack('page-style') @stack('styles') {{-- Main Header --}} @include('panels.navbar') {{-- Main Content --}}
@yield('content')
{{-- Footer (Optional) --}} @includeIf('panels.footer') {{-- Core Vendor JS --}} @includeIf('panels.scripts') {{-- Alpine.js (required for Laravel Fortify default behavior) --}} {{-- Feather Icons --}} {{-- Page JS --}} @stack('vendor-script') @stack('page-script') @stack('scripts')