Download the PHP package lionmm/compile-blades without Composer
On this page you can find all versions of the php package lionmm/compile-blades. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lionmm/compile-blades
More information about lionmm/compile-blades
Files in lionmm/compile-blades
Package compile-blades
Short Description Fork of te-cho/compile-blades to compile blades into a new file instead of overwriting the old file.
License MIT
Informations about the package compile-blades
compile-blades
A Laravel package for compiling blades nested in 1 file into 1 flattened file.
Refactored and tested only for Laravel 8
Be ready to refactor your views for using this command ;)
Why?
For best performance, you may want to consider flattening your blades on production, cause a lot of nesting consumes time in laravel since each nested level repeats the same pipline process, that consumes time & memory.
Example of problems:
- https://stackoverflow.com/questions/30673129/laravel-blades-performance/44863712#44863712
- https://laracasts.com/discuss/channels/laravel/how-to-improve-laravel-views-performance-when-using-multiple-times-same-view-file-or-howto-avoid-repeating-expensive-read-file-operation
Table of Contents
- Requirements
- Installation
- 1) Require the package
- 2) Configure Laravel
- Usage
- Flattening Views
Requirements
This version of package working only with Laravel 8+
Installation
1) Require the package
From your project's base path, run:
2) Configure Laravel
WIP
Usage
Before getting started, I highly recommend reading through Laravels documentation on Views and Blades.
Flattening Views:
Providing everything is set up and configured properly, all you need to do in order to flatten a view for a certain route or something else, is running the following command:
This will generate a flattened view instead of the current one.
Better way: pic needed blades in auto_compilers
section of configuration and use command
By default, folder compiled
will be created in your resources/views
path and flatten files will be placed in it
Now you can use command compiled_view();
instead of view();
for using flatten views IF they present
WIP
All versions of compile-blades with dependencies
illuminate/contracts Version ^8.0|^9.0
illuminate/support Version ^8.0|^9.0
illuminate/console Version ^8.0|^9.0
illuminate/view Version ^8.0|^9.0
symfony/process Version ^5.1|^6.0