Files
faveo/app/Model/helpdesk/Settings/Security.php
2016-06-13 20:41:55 +05:30

18 lines
376 B
PHP

<?php
namespace App\Model\helpdesk\Settings;
use App\BaseModel;
class Security extends BaseModel
{
/* Using auto_response table */
protected $table = 'settings_security';
/* Set fillable fields in table */
protected $fillable = [
'id', 'lockout_message', 'backlist_offender', 'backlist_threshold', 'lockout_period', 'days_to_keep_logs',
];
}