Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created April 30, 2017 15:41
Show Gist options
  • Save Mombuyish/6239c631e6e940e188c03049353ccce5 to your computer and use it in GitHub Desktop.
Save Mombuyish/6239c631e6e940e188c03049353ccce5 to your computer and use it in GitHub Desktop.
<?php
namespace App\Entities;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
protected $fillable = [
'subject', 'description', 'status'
];
protected $table = 'posts';
public function comments()
{
return $this->hasMany(Comment::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment