blade
blade copied to clipboard
Resource 'cache' already exists and is not a CI_Cache instance.
I can't use on CI 3. How can I fix this issue ?
Hi, I also CodeIgniter 3 and done it with:
- Create new helper called
view_helper.php
<?php
use Jenssegers\Blade\Blade;
if (!function_exists('view')) {
function view($view, $data = [])
{
$ci = & get_instance();
$path = APPPATH . 'views';
$blade = new Blade($path, $path . '/cache');
echo $blade->make($view, $data);
}
}
- Add
view_helper
toapplication/config/autoload.php
for easier usage - Then you can call the
view
function in the controller, etc...