PHP code example of northern-lights / eloquent-bootstrap-php56

1. Go to this page and download the library: Download northern-lights/eloquent-bootstrap-php56 library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

northern-lights / eloquent-bootstrap-php56 example snippets

 php


namespace NorthernLights\EloquentBootstrap\Example;

use NorthernLights\EloquentBootstrap\Database;
use NorthernLights\EloquentBootstrap\Provider\ConfigProvider;

'pass'
]));

// At this point, eloquent will boot
$database->init();
 php


namespace NorthernLights\EloquentBootstrap\Example;

use NorthernLights\EloquentBootstrap\Connection;
use NorthernLights\EloquentBootstrap\Database;
use NorthernLights\EloquentBootstrap\Provider\ConfigProvider;

    'password' => 'pass'
    ]))
);

$database->addConnection(
    new Connection('second-database', new ConfigProvider([
        'host'     => 'localhost',
        'database' => 'second_database',
        'username' => 'user',
        'password' => 'pass'
    ]))
);

// At this point, eloquent will boot
$database->init();
 php


namespace NorthernLights\EloquentBootstrap\Example;

use NorthernLights\EloquentBootstrap\Model as EloquentModel;

/**
 * Class Users
 * @package NorthernLights\EloquentBootstrap\Example
 */
class Users extends EloquentModel
{
    /** @var string  */
    protected $table = 'users';
}