seeder prices jadwal dokter

This commit is contained in:
pajri
2023-01-27 09:52:31 +07:00
parent 18ace75fc7
commit 4776eb5b0a
4 changed files with 155 additions and 1 deletions

View File

@@ -4,8 +4,17 @@ namespace App\Models\OLDLMS;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Healthcare extends Model
{
use HasFactory;
use HasFactory, SoftDeletes;
const CREATED_AT = 'dCreateOn';
const UPDATED_AT = 'dUpdateOn';
const DELETED_AT = 'dDeleteOn';
protected $connection = 'oldlms';
protected $table = 'tm_healthcare';
}