<?php
namespace App;
use Illuminate\Database\Eloquent\Model;

class Comments extends Model
{
    protected $fillable = ['tapal_id','seat_id','file_id','comment_type','comment_description','delete_at','updated_by'];
    public $table="comments";

    function seat()
    {
    	return $this->belongsTo('\App\Seat','seat_id');
    }
    function tapal()
    {
    	return $this->belongsTo('\App\Tapal','tapal_id');
    }
	function file()
    {
    	return $this->belongsTo('\App\File','file_id');
    }

}
