Добрый день, только изучаю laravel и пытаюсь построить небольшой блог. Искал как сделать связь между таблицами так и не нашел.
Имеется стандартная миграция пользователя:
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
И миграция для постов:
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
$table->string('slug')->unique();
$table->string('title');
$table->string('thumb');
$table->text('content');
$table->integer('author_id');
$table->timestamps();
$table->timestamp('published_at')->index();
});
Как мне связать user ID с author_id?