Files
phptimerboard2/app/Models/Admin/AllowedLogin.php
2019-09-26 01:45:12 -05:00

20 lines
319 B
PHP

<?php
namespace App\Models\Admin;
use Illuminate\Database\Eloquent\Model;
class AllowedLogin extends Model
{
//Table Name
public $table = 'allowed_logins';
//Timestamps
public $timestamps = true;
protected $fillable = [
'entity_id',
'entity_type',
'login_type',
];
}