What problem does it solve? Rendering large numbers of Blade components in Laravel applications adds runtime overhead. This Skill automates the setup of Livewire Blaze, which compiles anonymous Blade components into optimized PHP functions, and guides safe application of memoization and folding optimizations. ## Core Features & Use Cases - Automated Blaze Setup: Installs livewire/blaze via Composer, scans the codebase for components and custom component paths, and registers compilation in AppServiceProvider. - Compatibility Checking: Greps components for unsupported patterns (class-based components, $component variable, view composers, View::share) and excludes incompatible files from compilation. - Advanced Optimization: Applies trace-based or code-analysis-driven memoization and folding with safe/unsafe prop classification, plus refactors like converting slots to props. - Use Case: A Laravel app renders hundreds of icon and badge components per page. Use this Skill to enable Blaze compilation, then analyze trace data to memoize high-volume components and reduce render time. ## Quick Start Set up Blaze in my Laravel project and optimize my Blade components for faster rendering.