<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

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