Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created September 18, 2018 19:10
Show Gist options
  • Save uno-de-piera/6d5e272629bb88162fa74c6f367063f3 to your computer and use it in GitHub Desktop.
Save uno-de-piera/6d5e272629bb88162fa74c6f367063f3 to your computer and use it in GitHub Desktop.
<?php namespace App\Controllers;
use CodeIgniter\Controller;
use Jenssegers\Blade\Blade;
class BaseController extends Controller
{
protected $blade;
public function __construct () {
$this->blade = new Blade(APPPATH . 'Views', APPPATH . 'Cache');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment