Skip to content

Instantly share code, notes, and snippets.

@bishoyAtif
Last active May 25, 2018 14:22
Show Gist options
  • Save bishoyAtif/03fd92c13b6e83bf2a21f85c7e9ed579 to your computer and use it in GitHub Desktop.
Save bishoyAtif/03fd92c13b6e83bf2a21f85c7e9ed579 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Comment extends Model
{
protected $fillable = ['content', 'user_id'];
public function post()
{
return $this->belongsTo(Post::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