*/ protected $fillable = [ 'name', 'registration_name', 'email', 'address', 'city', 'zip', 'country_code', 'tax_fc', 'tax_vat', 'contact_name', 'contact_phone', 'contact_email', ]; /** * Get the supplier's incoming invoices. */ public function invoices(): HasMany { return $this->hasMany(Incoming::class); } }