@extends('root') @section('title', 'Test Send Template - Reseller') @section('content')
@include('components.breadcrumb', [ 'title' => 'Test Send Template', 'links' => [ ['url' => route('reseller.dashboard'), 'label' => 'Dashboard Reseller'], ['url' => route('reseller.templates.index'), 'label' => 'Templates'], ], 'current' => 'Test Send' ])

Test kirim template

Isi nomor WhatsApp tujuan dan parameter sesuai placeholder template. Hanya template berstatus approved yang dapat diuji.

Info Template
Nama
{{ $template->effectiveTemplateName() }}
Display
{{ $template->display_name ?? '-' }}
Kategori / Type
{{ ucfirst($template->effectiveType()) }}
Bahasa
{{ $template->language }}
Status
approved
WABA
{{ $template->wabaPool->phone_number ?? '-' }}
@csrf
@if ($headerInfo['type'] === 'text')
@elseif ($headerInfo['type'] === 'media')
Format: {{ $headerInfo['format'] ?? 'IMAGE' }}
@endif @if (count($placeholders))
@foreach($placeholders as $index => $ph)
{{ $ph }}
@endforeach
@endif
Kembali
@endsection @push('scripts') @endpush