membuat endpoint daily monitoring

This commit is contained in:
korospace
2023-10-27 15:28:02 +07:00
parent 0585f9f5f0
commit 670f62328b
5 changed files with 341 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class MedicalPlan extends Model
{
use HasFactory;
protected $table = "medical_plan";
protected $fillable = [
'claim_daily_monitoring_id',
'plan'
];
}