This package can render templates in Blade format in CodeIgniter applications.
It provides a class library that can be loaded in a CodeIgniter application to render views.
The class can load a template script in the Blade format.
Then it compiles the template and caches the results of the compilation to avoid processing it again every time it needs to be used.
The class can set variables to replace in placeholders and configure the way the template is processed.
In the end the class can render the template and output the result as the output of the current PHP script.
Currently it supports marks of the Blade template format like:
- comments
- echo
- forelse
- empty
- includes
- layouts
- section_start
- section_end
- yields
- yield_sections
- extensions
- else
- unless
- endunless
- endforelse
- structure_openings
- structure_closings |