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