belongsTo(Jobs::class, 'id', 'job_id'); } public function getLandlineTelAttribute($value) { if ($value) { return explode('-', $value); } } public function setLandlineTelAttribute($value) { if ($value) { $this->attributes['landline_tel'] = implode('-', $value); } } }