*/ class DocumentTranslationFactory extends Factory { protected $model = DocumentTranslation::class; public function definition(): array { $title = fake()->sentence(3); $content = fake()->paragraphs(3, true); return [ 'document_id' => Document::factory()->withoutTranslations(), 'locale' => 'en', 'title' => $title, 'content' => $content, 'rendered_html' => '
' . e($content) . '
', ]; } }