在我的应用程序中,我有几个 mysql 表:多伦多、温哥华、蒙特利尔等......我正在使用 DB-class 来处理它们,例如。
$data = DB::select('select * from toronto where id = ?', array($id));
我想做的是开始使用 Eloquent。我是 Laravel 的新手,只是想知道是否可以让一个模型与多个表一起使用,例如:
class City extends Eloquent {
protected $table_a = 'toronto';
protected $table_b = 'vancouver';
protected $table_c = 'montreal';
}