*/ class PostTemplateSectionFactory extends Factory { protected $model = PostTemplateSection::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'post_template_id' => PostTemplate::factory(), 'label' => 'business', 'position' => 1, ]; } }