*/ protected $fillable = [ 'vault_id', 'name', 'type', ]; /** * Get the vault associated with the company. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Vault, $this> */ public function vault(): BelongsTo { return $this->belongsTo(Vault::class); } /** * Get the contacts associated with the company. * * @return \Illuminate\Database\Eloquent\Relations\HasMany<\App\Models\Contact, $this> */ public function contacts(): HasMany { return $this->hasMany(Contact::class); } }