@extends('layouts.admin') @section('title', 'Response Template Details') @section('content')

{{ $responseTemplate->name }}

Template Name:
{{ $responseTemplate->name }}
Category:
{{ ucfirst($responseTemplate->category) }}
Status:
@if($responseTemplate->is_active) Active @else Inactive @endif
Created:
{{ $responseTemplate->created_at->format('M d, Y \a\t H:i') }}
Last Updated:
{{ $responseTemplate->updated_at->format('M d, Y \a\t H:i') }}

{{ $responseTemplate->subject }}
{!! nl2br(e($responseTemplate->content)) !!}

Available Placeholders

You can use the following placeholders in the subject and content:

  • {name} - Contact's name
  • {company} - Contact's company
  • {email} - Contact's email
  • {phone} - Contact's phone
  • {subject} - Original message subject
  • {service_interest} - Service of interest
  • {budget_range} - Budget range
  • {timeline} - Project timeline
@endsection