12 lines
251 B
PHP
12 lines
251 B
PHP
<?php
|
|
|
|
namespace App\Model\helpdesk\Utility;
|
|
|
|
use App\BaseModel;
|
|
|
|
class Limit_Login extends BaseModel
|
|
{
|
|
protected $table = 'limit_login';
|
|
protected $fillable = ['email', 'ip_address', 'duration', 'attempt_time', 'created_at', 'updated_at'];
|
|
}
|