<?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';
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.