updating permission system

This commit is contained in:
2019-01-07 11:14:44 -06:00
parent 2d17b97739
commit d57e979dd3
6 changed files with 132 additions and 8 deletions

View 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',
];
}