$attributes */ public static function make(array $attributes = []): EmailBody { return new EmailBody(array_merge([ 'unique_id_hash' => hash('sha256', fake()->uuid()), 'body_text' => fake()->paragraphs(3, true), 'body_html' => '

'.implode('

', fake()->paragraphs(3)).'

', ], $attributes)); } /** * Create and persist a new EmailBody instance. * * @param array $attributes */ public static function create(array $attributes = []): EmailBody { $body = static::make($attributes); $body->save(); return $body; } }