在模型本身中调用with语句时,是否可以调用具有无时间戳关系的模型 - 而不是进入该关系模型并说$ protected timestamps = false;
e.g
class Post Extends Eloquent {
public function template() {
return $this->hasOne('App\Template', 'id', 'template_id')->timestamps(false);
}
}
答案 0 :(得分:0)
您可以在以下模型中添加此内容以跳过值
protected $hidden = [
'created_at',
'updated_at'
];