ubah ke docker mode
This commit is contained in:
20
htdocs/app/Pasien.php
Normal file
20
htdocs/app/Pasien.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user