コード例 #1
0
ファイル: PostTableSeeder.php プロジェクト: talv86/easel
 /**
  * Seed the posts table with the Welcome post.
  */
 public function run()
 {
     Post::truncate();
     factory(Post::class, 1)->create();
 }