*/ class LocationTransactionFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'room_code' => $this->faker->buildingNumber(), 'timestamp_located_since' => $this->faker->unixTime() ]; } }