'自然', 'is_show' => 1, 'is_recommend' => 1], ['name' => '文化', 'is_show' => 1, 'is_recommend' => 1], ['name' => '生活', 'is_show' => 1, 'is_recommend' => 1], ]; foreach($categoris as $item) { $category = ArticleCategory::create($item); Article::factory()->count(10)->create(['category_id' => $category->id]); } foreach(Article::get() as $item) { $item->update([ 'jump_type' => 1, 'jump_link' => 'pages/article_details/article_details?id=' . $item->id ]); } } }