database And dertory update

This commit is contained in:
2021-03-08 13:01:01 +01:00
parent 858b065a8e
commit 4eb443cd1c
15 changed files with 59 additions and 13 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace Backend\Models;
use Illuminate\Database\Eloquent\Model as Eloquent;
class AdminUser extends Eloquent
{
protected $fillable = [
'user_name'
];
protected $hidden =[
'password'
];
}