public function run()
 {
     $faker = Faker::create();
     foreach (range(1, 10) as $index) {
         Overlord::create([]);
     }
 }
 /**
  * Remove the specified overlord from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Overlord::destroy($id);
     return Redirect::route('overlords.index');
 }