for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SaasReady\Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use SaasReady\Models\ReleaseNote;
class ReleaseNoteFactory extends Factory
{
protected $model = ReleaseNote::class;
public function definition(): array
return [
'version' => $this->faker->semver(),
'note' => $this->faker->text(),
];
}