Skip to content

Commit

Permalink
Merge branch '3.x' into test-cases
Browse files Browse the repository at this point in the history
  • Loading branch information
AravindRam-Ranium committed Feb 26, 2024
2 parents ace987c + 022df14 commit 7a63b91
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions database/factories/ConsentOptionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@ public function definition(): array
$title = $this->faker->words(3, true);

return [
'key' => Str::slug($title),
'version' => $this->faker->randomNumber(),
'title' => $title,
'label' => 'Tick here to accept the terms',
'text' => $this->faker->paragraph,
'is_mandatory' => 1,
'is_current' => 1,
'key' => Str::slug($title),
'version' => $this->faker->randomNumber(),
'title' => $title,
'label' => 'Tick here to accept the terms',
'text' => $this->faker->paragraph,
'is_mandatory' => 1,
'is_current' => 1,
'additional_info' => false,
'fields' => [],
'force_user_update' => 1,
'enabled' => 1,
'models' => config('filament-user-consent.models'),
'published_at' => now(),
'enabled' => 1,
'models' => config('filament-user-consent.models'),
'published_at' => now(),
];
}
}

0 comments on commit 7a63b91

Please sign in to comment.