faker->paragraph(1); $html = '

' . $text . '

'; $nextLocalId = static::$nextLocalId++; $user = User::query()->first(); return [ 'html' => $html, 'parent_id' => null, 'local_id' => $nextLocalId, 'content_ref' => '', 'archived' => false, 'created_by' => $user ?? User::factory(), 'updated_by' => $user ?? User::factory(), ]; } }