Caching chunks of your Blade templates As your application grows it's likely that your Blade templates will become more and more complex.
With this package you can cache a chunk of your Blade template and avoid unnecessary recompilation in future renders.
Now find the part of your Blade template that you'd like to cache and wrap it in a @cache directive.
Since this package uses Laravel's Cache setup, clearing the cached chunk of Blade is as simple as calling Cache::forget('heavy-bit-of-blade') or clearing the application cache on deployment.