Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The blade template engine can be used with codeigniter?

The template engine called blade can be used with codeigniter or pure php? I know that it can be used with laravel and I'd like to know if also can be used with any other php framework or with pure php

like image 840
Joe Avatar asked Aug 15 '15 04:08

Joe


2 Answers

Blade can be used stand-alone in PHP.

This means you can comfortably use it in CodeIgniter.

https://github.com/PhiloNL/Laravel-Blade

Then again, you will need composer for that.

like image 198
user2094178 Avatar answered Nov 04 '22 18:11

user2094178


Alternatively you could use this CodeIgniter Library to simulate Blade: CodeIgniter Slice-Libray

It works pretty like Blade and it was designed directly for CodeIgniter!

like image 39
Gustavo Martins Avatar answered Nov 04 '22 20:11

Gustavo Martins