Файловый менеджер - Редактировать - /home/clickysoft/public_html/somni.clickysoft.net/vendor/laravel/cashier/database/factories/SubscriptionFactory.php
Назад
<?php namespace Laravel\Cashier\Database\Factories; use DateTimeInterface; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; use Laravel\Cashier\Cashier; use Laravel\Cashier\Subscription; use Stripe\Price as StripePrice; use Stripe\Subscription as StripeSubscription; class SubscriptionFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = Subscription::class; /** * Define the model's default state. * * @return array<string, mixed> */ public function definition(): array { $model = Cashier::$customerModel; return [ (new $model)->getForeignKey() => ($model)::factory(), 'name' => 'default', 'stripe_id' => 'sub_'.Str::random(40), 'stripe_status' => StripeSubscription::STATUS_ACTIVE, 'stripe_price' => null, 'quantity' => null, 'trial_ends_at' => null, 'ends_at' => null, ]; } /** * Add a price identifier to the model. * * @return $this */ public function withPrice(StripePrice|string $price): static { return $this->state([ 'stripe_price' => $price instanceof StripePrice ? $price->id : $price, ]); } /** * Mark the subscription as active. * * @return $this */ public function active(): static { return $this->state([ 'stripe_status' => StripeSubscription::STATUS_ACTIVE, ]); } /** * Mark the subscription as being within a trial period. * * @return $this */ public function trialing(DateTimeInterface $trialEndsAt = null): static { return $this->state([ 'stripe_status' => StripeSubscription::STATUS_TRIALING, 'trial_ends_at' => $trialEndsAt, ]); } /** * Mark the subscription as canceled. * * @return $this */ public function canceled(): static { return $this->state([ 'stripe_status' => StripeSubscription::STATUS_CANCELED, 'ends_at' => now(), ]); } /** * Mark the subscription as incomplete. * * @return $this */ public function incomplete(): static { return $this->state([ 'stripe_status' => StripeSubscription::STATUS_INCOMPLETE, ]); } /** * Mark the subscription as incomplete where the allowed completion period has expired. * * @return $this */ public function incompleteAndExpired(): static { return $this->state([ 'stripe_status' => StripeSubscription::STATUS_INCOMPLETE_EXPIRED, ]); } /** * Mark the subscription as being past the due date. * * @return $this */ public function pastDue(): static { return $this->state([ 'stripe_status' => StripeSubscription::STATUS_PAST_DUE, ]); } /** * Mark the subscription as unpaid. * * @return $this */ public function unpaid(): static { return $this->state([ 'stripe_status' => StripeSubscription::STATUS_UNPAID, ]); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка