1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Subscription.php

72 lines
1.8 KiB
PHP
Raw Normal View History

2021-03-05 11:18:28 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use App\Services\Subscription\SubscriptionService;
2021-03-05 11:18:28 +01:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
2021-03-05 11:18:28 +01:00
class Subscription extends BaseModel
2021-03-05 11:18:28 +01:00
{
use HasFactory, SoftDeletes;
protected $fillable = [
2021-03-25 20:42:25 +01:00
'product_ids',
'recurring_product_ids',
'frequency_id',
'auto_bill',
'promo_code',
'promo_discount',
'is_amount_discount',
'allow_cancellation',
2021-03-31 22:04:53 +02:00
'per_seat_enabled',
'min_seats_limit',
'max_seats_limit',
'trial_enabled',
'trial_duration',
'allow_query_overrides',
'allow_plan_changes',
'plan_map',
'refund_period',
'webhook_configuration',
'currency_id',
2021-03-25 20:42:25 +01:00
'group_id',
2021-03-26 21:28:56 +01:00
'price',
2021-03-27 22:45:46 +01:00
'name',
];
2021-03-08 22:29:59 +01:00
protected $casts = [
'is_deleted' => 'boolean',
'plan_map' => 'object',
2021-03-30 11:41:58 +02:00
'webhook_configuration' => 'array',
2021-03-08 22:29:59 +01:00
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
public function service(): SubscriptionService
2021-03-14 22:40:07 +01:00
{
return new SubscriptionService($this);
2021-03-14 22:40:07 +01:00
}
public function company(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(Company::class);
}
public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(User::class);
}
2021-03-05 11:18:28 +01:00
}