Created
September 18, 2018 19:10
-
-
Save uno-de-piera/6d5e272629bb88162fa74c6f367063f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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