Blaze Support
Capell packages register anonymous Blade component directories with Livewire Blaze using function compilation only.
Default Strategy
Section titled “Default Strategy”compile: truememo: falsefold: false
Advanced Strategy Rules
Section titled “Advanced Strategy Rules”Memoization may be enabled only for components with no slots.
Folding may be enabled only after checking the component does not read global state, request/session/auth data, validation errors, shared view data, render hooks, Blade stacks, or CSRF tokens.
Current Advanced Strategy Exclusions
Section titled “Current Advanced Strategy Exclusions”packages/frontend-authoring/resources/views/authoring/bootstrap-script.blade.phpis returned from the admin-only beacon response, not compiled as a public anonymous component.packages/publishing-studio/resources/views/components/workspace-preview-pill.blade.phpreads the current request URL.packages/foundation-theme/resources/views/components/header/index.blade.phpuses@push.- Core layout builder hero and widget wrapper components use
@aware, so parent and child Blaze coverage must stay aligned in the admin/frontend core packages.
Rollout
Section titled “Rollout”In a consuming Laravel app, run php artisan view:clear after changing Blaze registrations. In this monorepo, run composer clear:views.
Set BLAZE_ENABLED=false to compare against Blade rendering.
Set BLAZE_DEBUG=true to use Blaze’s debug overlay and profiler.
Set CAPELL_BLAZE_THROW=true in local development when auditing fold candidates.