Files
zemailnator/app/Models/Plan.php
2025-05-16 11:24:08 +05:30

29 lines
488 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',
'price',
'mailbox_limit',
'monthly_billing',
'details',
];
protected $casts = [
'details' => 'json',
'monthly_billing' => 'boolean',
];
}