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

class Priority extends Model
{
	protected $fillable = ['priority','actions_per_days','updated_by','created_by','office_id'];
    protected $table='priority';

    function office()
    {
        return $this->belongsTo('\App\Office','office_id');
    }
}
