I have a Product model
class Product extends Model { ... public function prices() { return $this->hasMany(\'App\\Price\'); }
change follow code
public function lowest() { return $this->prices->min('price'); }
to
// add get as prefix and add posfix Attribute and make camel case function public function getLowestAttribute() { return $this->prices->min('price'); }