{{ $material->title }}

Back to Library
@if($material->thumbnail_url)
{{ $material->title }}
@endif

Description

{{ $material->description }}

@if($material->template_content)

Preview

{!! $personalizedContent !!}
@endif @if($material->video_url)

Video

@endif
@if($usageStats->isNotEmpty())

Usage Statistics

@foreach($usageStats as $stat) @endforeach
Usage Type Count Clicks Conversions Rate
{{ ucfirst(str_replace('_', ' ', str_replace('share_', '', $stat->usage_type))) }} {{ $stat->count }} {{ $stat->clicks }} {{ $stat->conversions }} {{ $stat->clicks > 0 ? round(($stat->conversions / $stat->clicks) * 100, 1) : 0 }}%
@endif

Actions

Material Information

Type

{{ ucfirst($material->type) }}

Created

{{ $material->created_at->format('M d, Y') }}

@if($material->tags)

Tags

@foreach(explode(',', $material->tags) as $tag) {{ trim($tag) }} @endforeach
@endif