| Current Path : /home/webg5288/public_html/klinikmentengprime/mentengpark/app/Models/ |
| Current File : /home/webg5288/public_html/klinikmentengprime/mentengpark/app/Models/tbl_room.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class tbl_room extends Model
{
use HasFactory;
//protected $table = 'tbl_desa';
protected $fillable = [
'room_number',
'room_type',
'harga'
];
protected $primaryKey = 'room_number';
public $incrementing = false;
protected $keyType = 'string';
}