20 lines
267 B
PHP
20 lines
267 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Dokter extends Model
|
|
{
|
|
protected $table = "dokter";
|
|
protected $fillable = [
|
|
'id',
|
|
'nama',
|
|
'jk',
|
|
'tgl_lahir',
|
|
'kota',
|
|
'alamat',
|
|
'poli_id'
|
|
];
|
|
}
|