31 lines
536 B
PHP
31 lines
536 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Plan extends Model
|
|
{
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
'product_id',
|
|
'pricing_id',
|
|
'shoppy_product_id',
|
|
'accept_stripe',
|
|
'accept_shoppy',
|
|
'oxapay_link',
|
|
'accept_oxapay',
|
|
'price',
|
|
'mailbox_limit',
|
|
'monthly_billing',
|
|
'details',
|
|
];
|
|
|
|
|
|
protected $casts = [
|
|
'details' => 'json',
|
|
'monthly_billing' => 'boolean',
|
|
];
|
|
}
|