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