Преглед изворни кода

live changes, added diferent hours in seeds

Serge пре 5 година
родитељ
комит
1282a9ae66
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      database/factories/LocationFactory.php

+ 1 - 1
database/factories/LocationFactory.php

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