public function setCountAttribute($value)
{
$this->attributes['count'] = round($value, 2);
}
public function owner(){
return $this->belongsTo('App\Owner');
}
public function cars(){
return $this->hasMany('App\Car');
}
Model::with('owner.cars')