Querying Relations
https://viblo.asia/p/eloquent-relationships-in-laravel-phan-3-MJykjmxyePB
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
/**
* Get all of the posts for the user.
*/
public function posts()
{
return $this->hasMany('App\Post');
}
}Last updated