first commit
This commit is contained in:
12
app/common/model/User.php
Normal file
12
app/common/model/User.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
namespace app\common\model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class User extends Model
|
||||
{
|
||||
protected $table = 'users';
|
||||
protected $guarded = [];
|
||||
protected $hidden = ['updated_at'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user