Files
zemailnator/app/Models/Plan.php
2025-06-21 04:09:08 +05:30

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',
];
}