Files
faveo/app/Model/Manage/Sla_plan.php
2015-05-01 13:13:01 +05:30

11 lines
269 B
PHP

<?php namespace App\Model\Manage;
use Illuminate\Database\Eloquent\Model;
class Sla_plan extends Model
{
protected $table = 'sla_plan';
protected $fillable = [
'name', 'grace_period', 'admin_note', 'status', 'transient', 'ticket_overdue'
];
}