// Before this PR:
// $this->faker->randomElements (plural)
// After this PR:
// $this->faker->randomElement (now singular)
Second,
// Before this PR:
// 'code' =>
// After this PR:
// 'status' => (replaced attribute name `code` with `status`)
Third,
// Before this PR:
// $this->faker->ipv4,
// $this->faker->dateTime,
// After this PR:
// $this->faker->ipv4(), (added parentheses)
// $this->faker->dateTime(), (added parentheses)
Fourth,
// Before this PR:
// had 5 attributes
// After this PR:
// 'counter' => $this->faker->randomNumber(4), (added sixth attribute field)
This PR fixes 4 issues-
First,
Second,
Third,
Fourth,