save to codehub
This commit is contained in:
23
app/Models/DietPlan.php
Normal file
23
app/Models/DietPlan.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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'
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user