'Laptops', 'created_at' => $date->modify('-10 day'), 'updated_at' => $date->modify('-3 day'), 'user_id' => 1, ); $date = new DateTime; $category[] = array( 'name' => 'Desktops', 'created_at' => $date->modify('-10 day'), 'updated_at' => $date->modify('-3 day'), 'user_id' => 1, ); $date = new DateTime; $category[] = array( 'name' => 'Tablets', 'created_at' => $date->modify('-10 day'), 'updated_at' => $date->modify('-3 day'), 'user_id' => 1, ); $date = new DateTime; $category[] = array( 'name' => 'Phones', 'created_at' => $date->modify('-10 day'), 'updated_at' => $date->modify('-3 day'), 'user_id' => 1, ); $date = new DateTime; $category[] = array( 'name' => 'Monitors', 'created_at' => $date->modify('-10 day'), 'updated_at' => $date->modify('-3 day'), 'user_id' => 1, ); // Delete all the blog posts DB::table('categories')->truncate(); // Insert the blog posts Category::insert($category); } }