給定一個表稱爲交易,我有這樣一個模型:模型應該處理自身的多個值嗎?
class Transaction extends Eloquent {
// other methods including some scopes
public static function getInteresting()
{
$data = Transaction::with('location', 'user', 'type')
->category(1)
->salesGroup(3)
->confirmed();
return $data->get();
}
}
所以,讓我們說,這些「有趣」的交易非常頻繁使用的 - 我應該從交易模式返回多個交易?如果不是,那麼代碼應該在哪裏存在?
[活動記錄](http://martinfowler.com/eaaCatalog/activeRecord.html)實例不是「型號」 –