Add permissions property to group factory

This commit is contained in:
Marcus Moore 2024-12-16 17:37:58 -08:00
parent 4bd6c2171c
commit af135fa42c
No known key found for this signature in database

View file

@ -23,6 +23,7 @@ class GroupFactory extends Factory
{
return [
'name' => $this->faker->name(),
'permissions' => json_encode([]),
];
}
}