next commit

This commit is contained in:
2019-09-26 01:45:12 -05:00
parent e94b153718
commit 89a691af52
22 changed files with 1505 additions and 37 deletions

View File

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