Skip to content

Instantly share code, notes, and snippets.

@mpmont
Forked from dshoreman/app-config-blade.php
Created September 25, 2012 18:31
Show Gist options
  • Save mpmont/3783590 to your computer and use it in GitHub Desktop.
Save mpmont/3783590 to your computer and use it in GitHub Desktop.
Custom loader class for CodeIgniter that implements Laravel's Blade templating engine
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
$this->view = false;
echo $this->load->blade('home.index');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment