v0.0.2 You can now make post and store it in the database.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Backend\Model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model as Eloquent;
|
||||
|
||||
class User extends Eloquent{
|
||||
|
||||
protected $fillable = [
|
||||
'name','password','remember_token'
|
||||
];
|
||||
|
||||
protected $hidden = [
|
||||
'password'
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user