コード例 #1
0
ファイル: HlogeonPageSeeder.php プロジェクト: hlogeon/scms
 public function run()
 {
     $faker = Faker\Factory::create('ru_RU');
     $category = Category::all()->first();
     $type = Type::all()->first();
     $page = Page::create(['in_menu' => false, 'published' => true, 'sidebar_in_layout' => false, 'title' => $faker->word, 'content' => $faker->paragraphs(), 'type_id' => $type]);
     $page->save();
     $page->category()->attach($category);
 }