next commit
This commit is contained in:
@@ -1,10 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user