PHPackages                             recca0120/laraigniter - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. recca0120/laraigniter

ActiveProject[Framework](/categories/framework)

recca0120/laraigniter
=====================

The CodeIgniter framework

v3.0.0(9y ago)18621[2 issues](https://github.com/recca0120/laraigniter/issues)MITHTMLPHP &gt;=5.2.4

Since Aug 6Pushed 9y ago4 watchersCompare

[ Source](https://github.com/recca0120/laraigniter)[ Packagist](https://packagist.org/packages/recca0120/laraigniter)[ Docs](https://codeigniter.com)[ RSS](/packages/recca0120-laraigniter/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Codeigniter with Eloquent and Blade
===================================

[](#codeigniter-with-eloquent-and-blade)

[![Latest Stable Version](https://camo.githubusercontent.com/618204372c5721b81899ac97cea547df5d0fea398ad4e5cc48b64dd032267c7c/68747470733a2f2f706f7365722e707567782e6f72672f7265636361303132302f6c61726169676e697465722f762f737461626c65)](https://packagist.org/packages/recca0120/laraigniter)[![Total Downloads](https://camo.githubusercontent.com/40a4bc4b74507b39eae8303cb574969618de189f39928199870c43ef67eed7db/68747470733a2f2f706f7365722e707567782e6f72672f7265636361303132302f6c61726169676e697465722f646f776e6c6f616473)](https://packagist.org/packages/recca0120/laraigniter)[![Latest Unstable Version](https://camo.githubusercontent.com/9837c88e2b8cfc9cb9894304948191901f4b9649d9dc2f708a08fcbb45b0b5e0/68747470733a2f2f706f7365722e707567782e6f72672f7265636361303132302f6c61726169676e697465722f762f756e737461626c65)](https://packagist.org/packages/recca0120/laraigniter)[![License](https://camo.githubusercontent.com/03469ff13759fb48f6c1450015a020789a14a8122857834fe1eb9efd3d55eabf/68747470733a2f2f706f7365722e707567782e6f72672f7265636361303132302f6c61726169676e697465722f6c6963656e7365)](https://packagist.org/packages/recca0120/laraigniter)[![Monthly Downloads](https://camo.githubusercontent.com/4d241493da9983c477af70cbbd4af49b7d3a268c1034293bd3c5f970bd42ba86/68747470733a2f2f706f7365722e707567782e6f72672f7265636361303132302f6c61726169676e697465722f642f6d6f6e74686c79)](https://packagist.org/packages/recca0120/laraigniter)[![Daily Downloads](https://camo.githubusercontent.com/86c9e2cfc281e9b8fa644f140f8f9b88b996bca257851b54bd119cbae09c8a80/68747470733a2f2f706f7365722e707567782e6f72672f7265636361303132302f6c61726169676e697465722f642f6461696c79)](https://packagist.org/packages/recca0120/laraigniter)

Installation
------------

[](#installation)

Add Presenter to your composer.json file:

```
"require": {
    "recca0120/laraigniter": "^0.1"
}
```

Now, run a composer update on the command line from the root of your project:

```
composer update

```

How to use
----------

[](#how-to-use)

import user.sql to mysql

### Database Config

[](#database-config)

application/config/database.php

```
$db['default']['hostname'] = 'your hostname';
$db['default']['username'] = 'your username';
$db['default']['password'] = 'your password';
$db['default']['database'] = 'your test';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = true;
$db['default']['db_debug'] = true;
$db['default']['cache_on'] = false;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = true;
$db['default']['stricton'] = false;
```

### Model

[](#model)

application/models/User.php

```
namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    protected $fillable = [
        'name',
        'email',
        'password',
    ];
}
```

### Controller

[](#controller)

application/controllers/welcome.php

```
if (!defined('BASEPATH')) {
    exit('No direct script access allowed');
}

use App\Models\User;

class Welcome extends CI_Controller
{
    public function index()
    {
        User::create([
            'name'     => 'test'.uniqid(),
            'email'    => 'test'.uniqid().'@test.com',
            'password' => md5('test'.uniqid()),
        ]);

        $users = User::paginate(5);
        $this->output->set_output(View::make('users', compact('users')));
    }
}
```

### View

[](#view)

application/views/users.blade.php

```

            id
            name
            email

    @foreach ($users as $user)

                {{ $user->id }}
                {{ $user->name }}
                {{ $user->email }}

    @endforeach

{!! $users->links() !!}
```

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~5 days

Total

2

Last Release

3611d ago

Major Versions

v2.0.0 → v3.0.02016-08-12

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1390554?v=4)[Recca Tsai](/maintainers/recca0120)[@recca0120](https://github.com/recca0120)

---

Top Contributors

[![recca0120](https://avatars.githubusercontent.com/u/1390554?v=4)](https://github.com/recca0120 "recca0120 (5 commits)")

### Embed Badge

![Health badge](/badges/recca0120-laraigniter/health.svg)

```
[![Health](https://phpackages.com/badges/recca0120-laraigniter/health.svg)](https://phpackages.com/packages/recca0120-laraigniter)
```

###  Alternatives

[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k39.6M291](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
