Esempio n. 1
0
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     //
     Console::create(['name' => 'Sony Playstation 4', 'short_name' => 'PS4']);
     Console::create(['name' => 'Microsoft Xbox One', 'short_name' => 'Xbox One']);
     Console::create(['name' => 'Nintendo Wii U', 'short_name' => 'Wii U']);
     Console::create(['name' => 'PC', 'short_name' => 'PC']);
     Console::create(['name' => 'Sony Playstation Vita', 'short_name' => 'PS Vita']);
     Console::create(['name' => 'Nintendo 3DS', 'short_name' => '3DS']);
     Console::create(['name' => 'Sony Playstation 3', 'short_name' => 'PS3']);
     Console::create(['name' => 'Microsoft Xbox 360', 'short_name' => 'Xbox 360']);
     Console::create(['name' => 'Nintendo Wii', 'short_name' => 'Wii']);
 }