Estrutura do Template
@if(!empty($template->structure['retranca']))
Retranca:
{{ $template->structure['retranca'] }}
@endif
@if(!empty($template->structure['content']))
Conteúdo:
{{ Str::limit($template->structure['content'], 200) }}
@endif
@if(!empty($template->structure['hashtags']))
Hashtags:
{{ $template->structure['hashtags'] }}
@endif
Tipo de Conteúdo:
@php
$tipo = App\Enums\TipoConteudoPost::tryFrom($template->structure['tipo_conteudo']);
@endphp
@if($tipo)
{{ $tipo->label() }}
@else
{{ $template->structure['tipo_conteudo'] }}
@endif