v.0.1
This commit is contained in:
8
app/models/User.php
Normal file
8
app/models/User.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace Models;
|
||||
use \Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class User extends Model {
|
||||
protected $table = 'Users';
|
||||
protected $fillable = ['username', 'email', 'password'];
|
||||
}
|
Reference in New Issue
Block a user