*/ protected $fillable = [ 'name', 'stripe_id', 'stripe_price', 'quantity', 'offer_id', 'invoice_id', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'trial_ends_at' => 'datetime', 'ends_at' => 'datetime', ]; public function offer(): BelongsTo { return $this->belongsTo(Offer::class); } }