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