@if($template->template_type == 1)
{{ Str::limit(html_entity_decode(strip_tags($template->subject)), 50) }}
{{ Str::limit(strip_tags(html_entity_decode($template->template_content)), 80) }}
@elseif($template->template_type == 2)
{{ Str::limit(html_entity_decode(strip_tags($template->template_content)), 100) }}
@else
{{ Str::limit(strip_tags(html_entity_decode($template->template_content)), 100) }}
@endif