<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Creation_of_tapal extends Model
{
    //

     protected $fillable = ['tapal_no','received_from','received_date','mode_of_receipt','subject_group_id','subject_id','priority','keywords','attachments','updated_by'];
    protected $table='creation_of_tapal';

function subject()
    {
    	return $this->belongsTo('\App\Subject','subject_id');
    }

function subject_group()
    {
    	return $this->belongsTo('\App\Subject_Group','subject_group_id');
    }

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