So i work with Laravel 4.2, what i want is in one of my models use an external database, this is my model code :
<?php
class McibModel extends Eloquent {
/**
* The database table used by the model.
*
* @var string
*/
//here i should call the external database table
protected $table = 'agencies';
}
So please if someone has any idea i will be very appreciative.
Different models can have different database connections. So your models use the normal default connection - but your 'McibModel' model can use another connection:
Then in your DB connection file - you would have something like this: