Для меня. Ибо достало путаться. %% class Post extends Model { public function comments(){ return $this->hasMany('App\Comment', 'id_в_таблице_комментов', 'id_в_таблице_постов'); } } class Comment extends Model { public function post(){ return $this->belongsTo('App\Post', 'id_в_таблице_комментов', 'id_в_таблице_постов'); } } %%