Merge branch 'develop' into bug/sc-24884

This commit is contained in:
Spencer Long
2024-07-23 12:55:19 -05:00
committed by GitHub
1647 changed files with 30844 additions and 32958 deletions
+11 -1
View File
@@ -25,9 +25,19 @@ class LocationFactory extends Factory
'image' => rand(1, 9).'.jpg',
];
}
// one of these can eventuall go away - left temporarily for conflict resolution
public function deleted(): self
{
return $this->state(['deleted_at' => $this->faker->dateTime()]);
}
public function deletedLocation()
{
return $this->state(function () {
return [
'deleted_at' => $this->faker->dateTime(),
];
});
}
}