21 lines
284 B
PHP
21 lines
284 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Pasien extends Model
|
|
{
|
|
protected $table = "pasien";
|
|
protected $fillable = [
|
|
'norm',
|
|
'nama',
|
|
'jk',
|
|
'tgl_lahir',
|
|
'kota',
|
|
'telpon',
|
|
'alamat',
|
|
'keterangan'
|
|
];
|
|
}
|