32 lines
617 B
PHP
32 lines
617 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Plan extends Model
|
|
{
|
|
public $incrementing = false;
|
|
protected $keyType = 'string';
|
|
|
|
protected $fillable = [
|
|
'id',
|
|
'name',
|
|
'price',
|
|
'duration',
|
|
'features',
|
|
'status',
|
|
'max_contact_people',
|
|
'unlimited_contacts',
|
|
'enable_job_apply',
|
|
];
|
|
|
|
protected $casts = [
|
|
'features' => 'array',
|
|
'unlimited_contacts' => 'boolean',
|
|
'enable_job_apply' => 'boolean',
|
|
'price' => 'float',
|
|
'max_contact_people' => 'integer',
|
|
];
|
|
}
|