15 lines
201 B
PHP
15 lines
201 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Ruangan extends Model
|
|
{
|
|
protected $table = "ruangan";
|
|
protected $fillable = [
|
|
'poli',
|
|
'ruangan'
|
|
];
|
|
}
|