'integer', 'reverse_charge' => 'boolean', 'archived_at' => 'datetime', ]; } public function planPrice(): BelongsTo { return $this->belongsTo(PlanPrice::class); } /** Is this the Price the catalogue is selling on right now? */ public function isLive(): bool { return $this->archived_at === null; } }