<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Rating extends Model
{
    //

    protected $fillable = [
        'user_id',
        'type',
        'content',
        'hostel_id',
        'user_be_rated',
        'created_at',
        'updated_at',
        'rate',
        'contract_id'
    ];

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