- // Model
- class Client extends Eloquent
- {
- protected $connection = 'masterDb';
- }
-
-
- // config/database.PHP
- 'masterDb' => array(
- 'driver' => 'MysqL','host' => 'localhost','database' => 'name','username' => 'user','password' => 'pass','charset' => 'utf8','collation' => 'utf8_unicode_ci','prefix' => '',),
您可以根据需要创建任意数量的命名连接.将其中一个设为默认值,每个模型可以在以后使用任何这些连接.