updating permission system
This commit is contained in:
24
app/Models/Admin/AllowedLogin.php
Normal file
24
app/Models/Admin/AllowedLogin.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Admin;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class AllowedLogin extends Model
|
||||
{
|
||||
// Table Name
|
||||
public $table = 'allowed_login';
|
||||
|
||||
// Timestamps
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'entity_id',
|
||||
'entity_type',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user