<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Plan extends Model
{
protected $table = "plans";
use HasFactory;
protected $fillable = [
'icon',
'name',
'key',
'description',
'interval',
'price',
'trial_days',
'is_test',
'status',
];
protected $attributes = [
'is_test' => 0,
'status' => 1,
];
const plan_interval = [
0 => 'Monthly',
1 => 'Yearly',
];
}