Skip to content

Instantly share code, notes, and snippets.

@Cerwyn
Created April 16, 2020 06:52
Show Gist options
  • Save Cerwyn/72dae0a2c81daa9843446b5f69149547 to your computer and use it in GitHub Desktop.
Save Cerwyn/72dae0a2c81daa9843446b5f69149547 to your computer and use it in GitHub Desktop.
One-to-many
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Comment extends Model
{
protected $fillable = [
'text', 'star'
];
public function article(){
return $this->belongsTo('App\Article');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment