Files
2024-04-19 14:04:41 +07:00

33 lines
620 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
class TMPasien extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'NoRM', 'Nama', 'JKL', 'Alamat', 'TglLahir'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
protected $table = 'TMPasien';
protected $primaryKey = ['NoRM'];
protected $keyType = 'string';
public $incrementing = false;
public $timestamps = false;
}