Skip to content

Instantly share code, notes, and snippets.

@bishoyAtif
Last active May 25, 2018 14:22
Show Gist options
  • Save bishoyAtif/5341ee5bcbd763701abc5a279068ad62 to your computer and use it in GitHub Desktop.
Save bishoyAtif/5341ee5bcbd763701abc5a279068ad62 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
protected $fillable = ['title', 'content', 'user_id'];
public function comments()
{
return $this->hasMany(Comment::class);
}
public function user()
{
return $this->belongsTo(User::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment