Files
faveo/app/Model/helpdesk/Settings/Followup.php
2016-12-13 13:14:54 +00:00

18 lines
325 B
PHP

<?php
namespace App\Model\helpdesk\Settings;
use App\BaseModel;
class Followup extends BaseModel
{
/* Using auto_response table */
protected $table = 'followup';
/* Set fillable fields in table */
protected $fillable = [
'id', 'name', 'status', 'condition', 'created_at', 'updated_at',
];
}