'boolean', ]; } public function fromShipments(): HasMany { return $this->hasMany(Shipment::class, 'from_country_id'); } public function toShipments(): HasMany { return $this->hasMany(Shipment::class, 'to_country_id'); } }