create([ 'username' => 'testy_mctestface', 'email' => 'test@example.com', ]); } Role::factory()->createMany([ [ 'name' => 'ADMIN', 'display_name' => 'Administrator', 'description' => 'Can make any changes to the list including deleting it. Can also invite other users to collaborate on this list.'], [ 'name' => 'EDITOR', 'display_name' => 'Editor', 'description' => 'Can add/remove movies from the list.'], [ 'name' => 'VIEWER', 'display_name' => 'Viewer', 'description' => 'Can view the list, but cannot make any changes.', ], ]); } }