Management Portal

Clinic Administration

Local Offline Mode

0

Total Bookings

0

Pending Actions

0

Confirmed Bookings

Patient Detail Contact Info Requested Therapy Symptoms / Health Goal Booking Time Status Actions
No booking records found. Submit form requests to view entries.
Supabase Integration

Connect Cloud Database

Link a secure Supabase project database to store client booking records in the cloud in real-time. This replaces local browser storage and synchronizes data across all devices.

SQL Setup

Initialize Database Table

To complete cloud setup, open your Supabase Project Dashboard, navigate to the SQL Editor, paste the script below, and click Run. This will set up the target bookings table correctly.

-- Re-create table if needed, or simply run the alter command
create table if not exists bookings (
  id text primary key,
  name text not null,
  phone text not null,
  email text,
  service text,
  message text,
  created_at timestamp with time zone default timezone('utc'::text, now()) not null,
  status text default 'Pending'::text not null
);

-- Disable Row Level Security to allow public API inserts
alter table bookings disable row level security;