@extends('layouts.admin', [ 'title' => 'Template Editor', 'pageTitle' => 'Template Editor', 'active' => 'reminders', ]) @php $variables = [ '{customer_name}', '{business_name}', '{service_name}', '{staff_name}', '{appointment_date}', '{appointment_time}', '{invoice_number}', '{invoice_amount}', '{booking_link}', ]; @endphp @section('content')

Design a reusable reminder template with dynamic variables for each booking or invoice.

@include('admin.reminders.partials.nav', ['activeTab' => 'editor'])

Insert variables

@foreach ($variables as $variable) @endforeach
Cancel Save Draft Save Template

WhatsApp reminder

To Jessica Miller

Hi Jessica Miller, this is a friendly reminder from Booklio Beauty Salon. Your Hair Cut & Style appointment with Emma Wilson is scheduled on May 23, 2026 at 9:00 AM.

booklio.com/beauty-salon/book

WhatsApp templates should stay concise and approved before production use.

Email templates can include a subject and longer message body.

Variables are replaced with booking, invoice, and customer data when reminders are sent.

@endsection