@extends('layouts.app') @section('title', 'Connect - View Notification Templates') @section('content')
@foreach($emailTemplates as $tpl)

{{ $tpl->name }}

Key: {{ $tpl->key }}
Email
Subject Line
{{ $tpl->subject }}
Placeholders Used
@php $placeholders = json_decode($tpl->placeholders ?? '[]', true); @endphp @foreach($placeholders as $ph) {!! '{' . $ph . '}' !!} @endforeach
Body Preview
{!! $tpl->body !!}
@endforeach
@foreach($whatsappTemplates as $tpl)

{{ $tpl->name }}

Key: {{ $tpl->key }}
@if($tpl->is_active) Active @else Inactive @endif
Meta Register Code
{{ $tpl->template_name }} ({{ $tpl->language }})
Placeholders Mapping
@php $placeholders = json_decode($tpl->placeholders ?? '[]', true); @endphp @foreach($placeholders as $index => $ph) {!! '{{' . ($index + 1) . '}}' !!} ({{ $ph }}) @endforeach
Body Preview
{{ $tpl->body }}
@endforeach
@endsection