<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class RoomType extends Model
{
    //
    protected $fillable = [
        'name',
        'images',
        'features',
        'size',
        'price',
        'desc',
        'created_at',
        'updated_at',
        'owner_id',
        'long',
        'width',
        'max_peoples',
        'hostel_id'
    ];

    protected $dates = [
        'created_at',
        'updated_at'
    ];
}
