24 lines
475 B
PHP
24 lines
475 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
|
|
||
|
|
class DietPlan extends Model
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
|
use SoftDeletes;
|
||
|
|
protected $dates = ['deleted_at'];
|
||
|
|
protected $table = 'diet_plans';
|
||
|
|
protected $fillable = [
|
||
|
|
'image',
|
||
|
|
'diet_categories',
|
||
|
|
'bmr_range_from',
|
||
|
|
'bmr_range_to',
|
||
|
|
'is_active'
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|