我正在使用 Laravel 3 并想在我的一个模型中使用 Sentry::user 作为 $include ,但它不会让我这样做。到目前为止,我已经在 $include 中尝试了“Sentry::user”,结果是“ap$iw{u[]”。我也尝试过“sentry.user”,但这意味着哨兵模型(我没有)和用户关系。
因此,为了让这个问题对其他人也有价值:如何将捆绑包中的模型包含在您自己的 Laravel 3 模型中?
<?php
public $includes = array('company', '??');
public function company() {
return $this->belongs_to('Company');
}
public function user() {
return $this->belongs_to('Sentry::user');
}
?>