laravel self:: code example
Example: laravel self
class Instrument extends Model
{
protected $appends = ['benchmark'];
public function getBenchmarkAttribute()
{
// this is equivalent to Instrument::find($this->benchmark_id)
return self::find($this->benchmark_id);
}
}