Я пытаюсь создать начальное число с Laravel 6, и проблема в том, что он генерирует данные в таблице продуктов, когда я пытаюсь соединиться с category_id, и появляется эта ошибка. Ниже мой код. Файл миграции:
Schema::create('products', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedBigInteger('user_id');
$table->unsignedBigInteger('category_id');
$table->string('name');
$table->text('description')->nullable();
$table->timestamps();
$table->foreign('user_id')->references('id')->on('users');
$table->foreign('categories_id')->references('id')->on('categories')->onDelete('cascade');
ProductSeeder:
foreach (range(1,3) as $i) {
Product::create([
'user_id' => \App\User::all()->random()->id,
'category_id' =>\App\Category::all()->random()->id,
'name' => $faker->name,
'active' => $faker->randomElement(['1', '0']),
'description'=> $faker->sentence,
]);
}