Skip to content

Codeigniter 2.2.0 Integrated with Illuminate database eloquent from laravel 4.2.*

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
license.txt
Notifications You must be signed in to change notification settings

brainlabs/ci-eloquent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ci-eloquent

Codeigniter 2.2.0 Integrated with Illuminate database eloquent from laravel 4.2.*

Installation

run command :

composer install

Use On Models

class name_of_class extends ORM
{
    protected $table = "table_name";
	
    function __construct()
	{
        parent::__construct();
    }
	
}

Use On Controllers

class name_of_class extends CI_Controller
{
    function __construct()
	{
        parent::__construct();
		$this->load->model('model_name');
    }
	
}

Author

Email : labsbrain@gmail.com

About

Codeigniter 2.2.0 Integrated with Illuminate database eloquent from laravel 4.2.*

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
license.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published