@extends('layouts.app') @section('title', 'WhatsApp Content - Tiqkets') @section('page-title', 'WhatsApp Content Management') @section('content') @if (session('success')) @endif @if (session('error')) @endif
@foreach($templates as $template) @endforeach
S. No Message Type Message Content Actions
{{ $loop->iteration }}
{{ $template->template_name }}
{{ ucfirst($template->message_type) }}
@if($template->message_type === 'text')
{{ Str::limit($template->message_content, 100) }}
@else
@if($template->message_content && Storage::exists($template->message_content)) {{ basename($template->message_content) }} @else Default {{ $template->message_type }} @endif
@endif
Edit @if($template->message_content !== $template->default_content)
@csrf
@else @endif
About WhatsApp Templates

These templates are used for automated WhatsApp messages sent to customers for various events like order updates, queue status, and service notifications.

  • Text messages: Plain text content for customer communication
  • Media messages: Images, videos, documents, or stickers
  • Reset feature: Restore any template to its default content
@endsection @push('styles') @endpush