/**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     DB::table('billboards')->truncate();
     $faker = Faker::create();
     foreach (range(1, 20) as $index) {
         Billboard::create(['latLng' => $faker->latitude . ", " . $faker->longitude, 'structure' => 'Attached to structure', 'placement' => 'Ground Level', 'size' => '5*15', 'panel_type' => 'Digital', 'road_type' => 'Highway', 'speed_of_road' => 120, 'billboard_owner_id' => BillboardOwner::first()->id]);
     }
 }