Browse Source

live changes, added diferent hours in seeds

Serge 5 years ago
parent
commit
7caff67d95
1 changed files with 3 additions and 1 deletions
  1. 3 1
      database/factories/LocationFactory.php

+ 3 - 1
database/factories/LocationFactory.php

@@ -16,11 +16,13 @@ $factory->define(Location::class, function (Faker $faker) {
         $lngArray[] = $lng;
         $lngArray[] = $lng;
         $lng += 0.00715;
         $lng += 0.00715;
     }
     }
+    $time = Carbon::now()->subDays(rand(1, 10))->subHours(rand(8, -8));
 
 
     return [
     return [
         'lat' => array_random($latArray),
         'lat' => array_random($latArray),
         'lng' => array_random($lngArray),
         'lng' => array_random($lngArray),
-        'created_at' => Carbon::now()->subDays(rand(1, 10)),
+	'created_at' => $time,
+	'updated_at' => $time,
         'user_id' => null,//
         'user_id' => null,//
     ];
     ];
 });
 });