소스 검색

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,//
     ];
 });