@extends('layouts.app') @section('content')
Template Details
Type {{ ucfirst($template->type) }}
Subject {{ $template->subject }}
AI Enhanced {!! $template->is_ai_enhanced ? ' Yes' : ' No' !!}
Created {{ $template->created_at->format('M d, Y H:i') }}
Last Updated {{ $template->updated_at->format('M d, Y H:i') }}
Analytics
Open Rate: {{ $template->open_rate }}
Click Rate: {{ $template->click_rate }}
Engagement: {{ $template->getEngagementRate() }}%

{{ $template->getEngagementRate() }}%
@if($template->is_ai_enhanced)
AI Configuration
AI Instructions
{{ $template->ai_instructions ?: 'No instructions provided' }}
AI Variables
{{ is_array($template->ai_variables) ? json_encode($template->ai_variables, JSON_PRETTY_PRINT) : ($template->ai_variables ?: 'No variables defined') }}
@endif
Email Content Preview
Subject: {{ $template->subject }}
@push('styles') @endpush @push('scripts') @endpush @endsection