<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Tapal_forward extends Model
{
    //

    protected $fillable = ['tapal_id','from_seat','to_seat','updated_by','active_flag','read_flag','capture_flag'];

    public $table="tapal_forward";


    function tapal()
    {
    	return $this->belongsTo('\App\Tapal','tapal_id');
    }

    function priorityobj()
    {
    	return $this->belongsTo('\App\Priority','priority');
    }

   

}
