14 lines
316 B
PHP
14 lines
316 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Filetemp extends Model
|
|
{
|
|
protected $table = "temp";
|
|
protected $fillable = [
|
|
'tanggal', 'nomor', 'nama', 'usia', 'l', 'p', 'foto', 'ruang', 'keterangan', 'poli', 'jkn', 'umum', 'tag', 'gcu', 'cito', 'daftar', 'status'
|
|
];
|
|
}
|