*/ use HasFactory; protected $fillable = [ 'name', 'license_plate', 'owntracks_device_id', 'notes', ]; public function serviceJobs(): HasMany { return $this->hasMany(Job::class); } public function displayLabel(): string { return $this->license_plate ? "{$this->name} ({$this->license_plate})" : $this->name; } }