Custom relationship attributes
public function getFullNameAttribute()
{
return "{$this->first_name} {$this->last_name}";
}public $additional_attributes = ['full_name'];Last updated
Was this helpful?
public function getFullNameAttribute()
{
return "{$this->first_name} {$this->last_name}";
}public $additional_attributes = ['full_name'];Last updated
Was this helpful?
Was this helpful?