Skip to content

Instantly share code, notes, and snippets.

@DavidStrada
Created June 28, 2016 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidStrada/4af68f6965e6f6dd93f822547b3dc47d to your computer and use it in GitHub Desktop.
Save DavidStrada/4af68f6965e6f6dd93f822547b3dc47d to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Article extends Model
{
protected $fillable = ['name', 'content'];
public function laws()
{
return $this->belongsTo(Law::class);
}
public function articles()
{
return $this->belongsTo(Article::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment