Skip to content

Instantly share code, notes, and snippets.

@Brandonxy
Created December 11, 2017 00:05
Show Gist options
  • Save Brandonxy/87e3b67f3bd377a0c3795c2f11274aca to your computer and use it in GitHub Desktop.
Save Brandonxy/87e3b67f3bd377a0c3795c2f11274aca to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Comment extends Model
{
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