| Name: |
{{ $template->name }} |
| Type: |
{{ ucfirst($template->type) }}
|
| Status: |
{{ ucfirst($template->status) }}
|
| Category: |
{{ $template->category ?? 'N/A' }} |
| Featured: |
{{ $template->is_featured ? 'Yes' : 'No' }}
|
| Version: |
{{ $template->version ?? 'N/A' }} |
| Demo Link: |
@if($template->demo_link)
{{ $template->demo_link }}
@else
N/A
@endif
|
| Created: |
{{ $template->created_at->format('M d, Y H:i') }} |
| Updated: |
{{ $template->updated_at->format('M d, Y H:i') }} |
| Total Sections: |
{{ $template->sections->count() }} |
@if($template->description)
Description
{{ $template->description }}
@endif
@if($template->tags && count($template->tags) > 0)
Tags
@foreach($template->tags as $tag)
{{ $tag }}
@endforeach
@endif
@if($template->sections->count() > 0)
Template Sections
| Name |
Sort Order |
Placeholders |
Actions |
@foreach($template->sections as $section)
| {{ $section->name }} |
{{ $section->sort_order }} |
@if($section->placeholders && count($section->placeholders) > 0)
@foreach($section->placeholders as $placeholder)
{{ $placeholder }}
@endforeach
@else
None
@endif
|
Edit
|
@endforeach
@endif