-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 28, 2026 at 10:06 PM
-- Server version: 10.11.17-MariaDB
-- PHP Version: 8.4.21

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `wwwbrsdemo_alliston_physiotherapy`
--

-- --------------------------------------------------------

--
-- Table structure for table `tasap_admin`
--

CREATE TABLE `tasap_admin` (
  `admin_id` int(10) UNSIGNED NOT NULL,
  `role_id` int(11) NOT NULL,
  `username` varchar(30) NOT NULL,
  `password` varchar(64) NOT NULL,
  `display_name` varchar(60) NOT NULL,
  `first_name` varchar(30) NOT NULL,
  `last_name` varchar(30) DEFAULT NULL,
  `email` varchar(60) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_admin`
--

INSERT INTO `tasap_admin` (`admin_id`, `role_id`, `username`, `password`, `display_name`, `first_name`, `last_name`, `email`, `status`, `email_verified_at`, `remember_token`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 'admin', '$2y$12$p0Bz0SZNz23S/digKXG/0uJoZhKMcX53vmzbOLTp.jIu4IvUWlmpa', 'Administrator', 'Alliston Physiotherapy', 'System', 'testing@tastechnologies.com', 1, NULL, '7CkJbOQg8cd2Ca0qMAt4JoS7IyFXM5ROOCbwKB0IsqHBUC5RUCT0ZtiQJsHW', 1, '2025-03-17 05:12:21', '2025-09-20 18:17:11');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_admin_role`
--

CREATE TABLE `tasap_admin_role` (
  `role_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(100) NOT NULL,
  `info` text DEFAULT NULL,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_admin_role`
--

INSERT INTO `tasap_admin_role` (`role_id`, `title`, `info`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Super Administrator', NULL, 1, '2025-03-17 05:12:21', '2025-03-17 05:12:21');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_blog_categories`
--

CREATE TABLE `tasap_blog_categories` (
  `blog_cat_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `slug` varchar(128) NOT NULL,
  `descp` text DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `parent` int(11) NOT NULL DEFAULT 0,
  `meta_title` varchar(128) DEFAULT NULL,
  `meta_key` varchar(128) DEFAULT NULL,
  `meta_descp` text DEFAULT NULL,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `is_default` tinyint(4) NOT NULL DEFAULT 0,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_blog_posts`
--

CREATE TABLE `tasap_blog_posts` (
  `blog_post_id` int(10) UNSIGNED NOT NULL,
  `blog_type_id` int(11) NOT NULL DEFAULT 1,
  `title` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `icon_media_id` int(11) NOT NULL DEFAULT 0,
  `thumb_media_id` int(11) NOT NULL DEFAULT 0,
  `media_id` int(11) NOT NULL DEFAULT 0,
  `parent` int(11) NOT NULL DEFAULT 0,
  `excerpt` text DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` enum('draft','pending_review','publish','closed') NOT NULL DEFAULT 'draft',
  `published_at` timestamp NULL DEFAULT NULL,
  `visibility` enum('public','password') NOT NULL DEFAULT 'public',
  `password` varchar(128) DEFAULT NULL,
  `meta_title` varchar(128) DEFAULT NULL,
  `meta_key` varchar(128) DEFAULT NULL,
  `meta_descp` text DEFAULT NULL,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_blog_post_categories`
--

CREATE TABLE `tasap_blog_post_categories` (
  `blog_post_id` int(10) UNSIGNED NOT NULL,
  `blog_category_id` int(10) UNSIGNED NOT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `created_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_blog_post_tags`
--

CREATE TABLE `tasap_blog_post_tags` (
  `blog_post_id` int(10) UNSIGNED NOT NULL,
  `blog_tag_id` int(10) UNSIGNED NOT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `created_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_blog_post_views`
--

CREATE TABLE `tasap_blog_post_views` (
  `blog_post_view_id` int(10) UNSIGNED NOT NULL,
  `blog_post_id` int(10) UNSIGNED NOT NULL,
  `ip_address` varchar(255) NOT NULL,
  `session` varchar(255) NOT NULL,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_blog_tags`
--

CREATE TABLE `tasap_blog_tags` (
  `blog_tag_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `slug` varchar(128) NOT NULL,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_cache`
--

CREATE TABLE `tasap_cache` (
  `key` varchar(255) NOT NULL,
  `value` mediumtext NOT NULL,
  `expiration` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_cache_locks`
--

CREATE TABLE `tasap_cache_locks` (
  `key` varchar(255) NOT NULL,
  `owner` varchar(255) NOT NULL,
  `expiration` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_consent_soft_tissue_release`
--

CREATE TABLE `tasap_consent_soft_tissue_release` (
  `id` int(11) NOT NULL,
  `signature` varchar(255) DEFAULT NULL,
  `patient_name` varchar(255) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tasap_consent_soft_tissue_release`
--

INSERT INTO `tasap_consent_soft_tissue_release` (`id`, `signature`, `patient_name`, `date`, `created_at`, `updated_at`) VALUES
(1, 'Owais 1', 'Owais Aslam 1', '2026-05-14', '2026-05-14 13:11:26', '2026-05-14 16:33:05'),
(2, 'demo', 'demo', '2026-05-15', '2026-05-15 13:32:08', '2026-05-15 13:32:08');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_custom_field_group`
--

CREATE TABLE `tasap_custom_field_group` (
  `cf_group_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(255) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `c_order` bigint(20) NOT NULL DEFAULT 0,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_custom_field_group`
--

INSERT INTO `tasap_custom_field_group` (`cf_group_id`, `title`, `status`, `c_order`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Editor Group', 1, 2, 1, 1, '2025-03-17 05:12:22', '2025-03-17 06:53:51'),
(2, 'Page Style CSS Section', 1, 99, 1, 1, '2025-03-17 05:12:22', '2025-03-17 06:53:37'),
(3, 'Gallery Section', 1, 0, 1, 1, '2025-03-17 06:14:18', '2025-03-17 06:14:18'),
(4, 'Sub Title', 1, 0, 1, 1, '2025-03-17 06:30:43', '2025-03-17 06:30:43'),
(5, 'Box Contents', 1, 1, 1, 1, '2025-03-17 06:32:30', '2025-03-17 06:32:30');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_custom_field_group_type`
--

CREATE TABLE `tasap_custom_field_group_type` (
  `cf_group_type_id` bigint(20) UNSIGNED NOT NULL,
  `cf_group_id` bigint(20) NOT NULL,
  `field_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_for` enum('','a','w','ap') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'a=All(used for both App/Website,w=Website,ap=App',
  `field_options` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'user customized Json field options',
  `c_order` bigint(20) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tasap_custom_field_group_type`
--

INSERT INTO `tasap_custom_field_group_type` (`cf_group_type_id`, `cf_group_id`, `field_name`, `field_type`, `field_for`, `field_options`, `c_order`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 'editor_1', 'editor', 'w', '{\"type\": \"editor\", \"label\": \"Description\", \"multiple\": \"n\", \"required\": false, \"description\": \"For asset image Display, put in editor as  [asset path=\'images/image-2.jpg\']\", \"instruction\": \"\", \"placeholder\": \"\", \"drag_and_sort\": \"n\", \"module_selected_model\": \"Gallery\"}', 1, 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 06:17:52'),
(2, 1, 'editor_2', 'editor', 'w', '{\"type\": \"editor\", \"label\": \"Description\", \"multiple\": \"n\", \"required\": false, \"description\": \"For asset image Display, put in editor as  [asset path=\'images/image-2.jpg\']\", \"instruction\": \"\", \"placeholder\": \"\", \"drag_and_sort\": \"n\", \"module_selected_model\": \"Gallery\"}', 2, 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 06:18:10'),
(3, 1, 'editor_3', 'editor', 'w', '{\"type\": \"editor\", \"label\": \"Description\", \"multiple\": \"n\", \"required\": false, \"description\": \"For asset image Display, put in editor as  [asset path=\'images/image-2.jpg\']\", \"instruction\": \"\", \"placeholder\": \"\", \"drag_and_sort\": \"n\", \"module_selected_model\": \"Gallery\"}', 3, 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 06:19:09'),
(4, 2, 'textarea_4', 'textarea', 'w', '{\"type\": \"textarea\", \"label\": \"Page Style CSS\", \"multiple\": \"n\", \"required\": false, \"description\": \"Please define Your CSS without open & close \\\"style\\\" tags<br/>NOTE: It will applicable to only this front-end page\", \"instruction\": \"\", \"placeholder\": \"Page CSS\", \"drag_and_sort\": \"y\", \"module_selected_model\": \"Gallery\"}', 1, 1, 1, 1, '2024-09-16 05:21:09', '2025-03-17 05:12:22'),
(5, 3, 'moduleDropdown_5', 'moduleDropdown', 'w', '{\"type\": \"moduleDropdown\", \"label\": \"Gallery\", \"multiple\": \"n\", \"required\": false, \"description\": \"\", \"instruction\": \"\", \"placeholder\": \"-- Select Gallery --\", \"drag_and_sort\": \"n\", \"module_selected_model\": \"Gallery\"}', 1, 1, 1, 1, '2025-03-17 06:16:40', '2025-03-17 06:16:40'),
(6, 4, 'text_6', 'text', 'w', '{\"type\": \"text\", \"label\": \"Title\", \"multiple\": \"n\", \"required\": false, \"description\": \"\", \"instruction\": \"\", \"placeholder\": \"\", \"drag_and_sort\": \"y\", \"module_selected_model\": \"Gallery\"}', 7, 1, 1, 1, '2025-03-17 06:31:22', '2025-03-17 06:51:58'),
(7, 5, 'image_7', 'image', 'w', '{\"type\": \"image\", \"label\": \"Thumb Image\", \"multiple\": \"n\", \"required\": false, \"description\": \"\", \"instruction\": \"\", \"placeholder\": \"\", \"drag_and_sort\": \"y\", \"module_selected_model\": \"Gallery\"}', 1, 1, 1, 1, '2025-03-17 06:34:01', '2025-03-17 06:52:24'),
(8, 5, 'image_8', 'image', 'w', '{\"type\": \"image\", \"label\": \"Box Icon\", \"multiple\": \"n\", \"required\": false, \"description\": \"\", \"instruction\": \"\", \"placeholder\": \"\", \"drag_and_sort\": \"y\", \"module_selected_model\": \"Gallery\"}', 2, 1, 1, 1, '2025-03-17 06:35:03', '2025-03-17 06:35:03'),
(9, 5, 'textarea_9', 'textarea', 'w', '{\"type\": \"textarea\", \"label\": \"Box Short Description\", \"multiple\": \"n\", \"required\": false, \"description\": \"\", \"instruction\": \"\", \"placeholder\": \"\", \"drag_and_sort\": \"y\", \"module_selected_model\": \"Gallery\"}', 3, 1, 1, 1, '2025-03-17 06:36:58', '2025-03-17 06:36:58');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_custom_field_group_type_class_template`
--

CREATE TABLE `tasap_custom_field_group_type_class_template` (
  `cf_gt_class_template_id` bigint(20) UNSIGNED NOT NULL,
  `cf_group_type_id` bigint(20) NOT NULL,
  `class_id` bigint(20) NOT NULL,
  `template_id` int(11) NOT NULL,
  `deleted_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Internal use',
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_custom_field_group_type_class_template`
--

INSERT INTO `tasap_custom_field_group_type_class_template` (`cf_gt_class_template_id`, `cf_group_type_id`, `class_id`, `template_id`, `deleted_flag`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 8, 1, 0, 1, 1, '2025-03-17 06:19:51', '2025-03-17 06:19:51'),
(2, 1, 8, 2, 0, 1, 1, '2025-03-17 06:20:04', '2025-03-17 06:20:04'),
(3, 1, 8, 3, 0, 1, 1, '2025-03-17 06:20:30', '2025-03-17 06:20:30'),
(4, 1, 8, 4, 0, 1, 1, '2025-03-17 06:21:31', '2025-03-17 06:21:31'),
(5, 1, 8, 5, 0, 1, 1, '2025-03-17 06:22:58', '2025-03-17 06:22:58'),
(6, 1, 8, 6, 0, 1, 1, '2025-03-17 06:23:10', '2025-03-17 06:23:10'),
(7, 1, 8, 8, 0, 1, 1, '2025-03-17 06:24:30', '2025-03-17 06:24:30'),
(9, 1, 8, 10, 0, 1, 1, '2025-03-17 06:27:00', '2025-03-17 06:27:00'),
(10, 1, 8, 11, 0, 1, 1, '2025-03-17 06:27:12', '2025-03-17 06:27:12'),
(12, 1, 8, 13, 0, 1, 1, '2025-03-17 06:27:47', '2025-03-17 06:27:47'),
(13, 1, 8, 14, 0, 1, 1, '2025-03-17 06:27:52', '2025-03-17 06:27:52'),
(14, 6, 8, 7, 0, 1, 1, '2025-03-17 06:31:43', '2025-03-17 06:31:43'),
(15, 6, 8, 9, 0, 1, 1, '2025-03-17 06:31:53', '2025-03-17 06:31:53'),
(16, 7, 8, 10, 0, 1, 1, '2025-03-17 06:37:33', '2025-03-17 06:37:33'),
(17, 8, 8, 10, 0, 1, 1, '2025-03-17 06:38:13', '2025-03-17 06:38:13'),
(18, 9, 8, 10, 0, 1, 1, '2025-03-17 06:38:34', '2025-03-17 06:38:34'),
(19, 6, 8, 8, 0, 1, 1, '2025-03-17 06:41:50', '2025-03-17 06:41:50'),
(20, 7, 8, 8, 0, 1, 1, '2025-03-17 06:52:34', '2025-03-17 06:52:34'),
(22, 5, 8, 1, 0, 1, 1, '2025-03-17 08:56:23', '2025-03-17 08:56:23'),
(23, 5, 8, 12, 0, 1, 1, '2025-07-08 17:56:51', '2025-07-08 17:56:51'),
(24, 1, 8, 16, 0, 1, 1, '2026-03-06 14:56:43', '2026-03-06 14:56:43'),
(25, 1, 8, 17, 0, 1, 1, '2026-03-06 14:57:04', '2026-03-06 14:57:04'),
(26, 1, 8, 18, 0, 1, 1, '2026-03-06 14:57:22', '2026-03-06 14:57:22'),
(27, 1, 8, 19, 0, 1, 1, '2026-03-06 14:57:34', '2026-03-06 14:57:34'),
(28, 1, 8, 20, 0, 1, 1, '2026-03-06 14:57:52', '2026-03-06 14:57:52'),
(29, 1, 8, 21, 0, 1, 1, '2026-03-06 14:58:05', '2026-03-06 14:58:05'),
(30, 1, 8, 22, 0, 1, 1, '2026-03-06 14:58:21', '2026-03-06 14:58:21');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_custom_field_group_type_values`
--

CREATE TABLE `tasap_custom_field_group_type_values` (
  `cf_group_type_value_id` bigint(20) UNSIGNED NOT NULL,
  `cf_group_type_id` bigint(20) NOT NULL,
  `cf_gt_class_template_id` bigint(20) NOT NULL,
  `data_id` bigint(20) NOT NULL COMMENT 'Unique Universal identifier for each module class',
  `field_value` longtext NOT NULL,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_custom_field_group_type_values`
--

INSERT INTO `tasap_custom_field_group_type_values` (`cf_group_type_value_id`, `cf_group_type_id`, `cf_gt_class_template_id`, `data_id`, `field_value`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 4, 3, '<section class=\"about-us\">\r\n    <div class=\"container\">\r\n      <div class=\"row\">\r\n        <div class=\"col-xl-6 pe-xl-5\"> <img src=\"[asset path=\'images/About-us/4.jpg\']\" class=\"img-fluid wow fadeInLeft\" alt=\"About Us Image\">\r\n        </div>\r\n        <div class=\"col-xl-6 px-xl-4 mt-4 mt-xl-0\">\r\n          <div class=\"pq-section pq-style-1 text-left\">\r\n\r\n            <h5 class=\"pq-section-title\">Mission Statement</h5>\r\n\r\n            <p class=\"pq-section-description\">To Provide the highest quality Physiotherapy and Massage Therapy,\r\n              assessment and treament while recognizing our clients\' right to privacy and confidentiality.</p>\r\n\r\n            <h5 class=\"pq-section-title\">About Alliston Physiotherapy and Sports Rehabilitation</h5>\r\n\r\n            <p><strong>We are a multi-disciplinary rehabilitation centre</strong> who has been in New Tecumseth since\r\n              1989 and specifically in Alliston since 1997. We are located downtown Alliston at 27 Victoria Street East.\r\n              Alliston Physiotherapy offers a wide range of services including Physiotherapy, Registered Massage\r\n              Therapy, Low Intensity Laser Therapy, Acupuncture, and Shockwave.<br>\r\n              <br>\r\n\r\n              We are a private clinic and, for your convenience, can direct bill ALL major extended health care\r\n              insurance companies. We also accept motor vehicle accident claims as well as Work Place Safety and\r\n              Insurance Board claims. <strong>It would be our pleasure to work with you.</strong>\r\n            </p>\r\n\r\n          </div>\r\n\r\n\r\n        </div>\r\n      </div>\r\n    </div>\r\n  </section>', 1, 0, '2025-03-17 06:48:43', NULL),
(2, 6, 14, 6, 'Professional Staff', 1, 0, '2025-03-17 06:50:49', NULL),
(3, 6, 19, 7, 'Operations Manager', 1, 1, '2025-03-17 06:57:20', '2025-03-17 06:57:57'),
(4, 7, 20, 7, '79', 1, 1, '2025-03-17 06:57:20', '2025-03-31 14:09:45'),
(5, 1, 7, 7, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404952-1.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Ruby Dhillon  <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Operations Manager</span>\r\n                  <p>Ruby Dhillon is a driven professional with a robust educational background and over 15 years of extensive customer service and management experience, embodying dedication and expertise in her field. With a strong foundation in engineering, Ruby earned her Bachelor\'s degree in Electrical Engineering and her Master\'s degree in Electrical and Computer Engineering. This academic journey laid the groundwork for her successful career, which she further built upon by completing a Master\'s degree at the prestigious University of Windsor. Her academic achievements have not only deepened her knowledge but also honed her skills to tackle complex challenges in her chosen field.<br><br>\r\n\r\nWith more than 15 years in customer service, Ruby has developed an in-depth understanding of customer needs, behaviors, and expectations. Her rich experience has allowed her to refine her ability to provide personalized service, ensuring that every customer interaction is handled with care and attention. Ruby\'s strong customer service background has enabled her to build lasting relationships with clients, creating a loyal customer base and improving satisfaction across various sectors. Her extensive experience has also equipped her with the skills to effectively handle a variety of customer concerns, resolve conflicts, and maintain a calm and professional demeanor under pressure.\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\nIn her role as an operational manager, Ruby has proven herself to be a skilled leader with a keen understanding of how to motivate and guide high-performing teams toward success. Her ability to foster a culture of excellent customer service, coupled with her strategic approach to problem-solving, has allowed her to drive service excellence and ensure that customer satisfaction remains a top priority. Ruby has successfully led her teams in addressing customer concerns, implementing innovative solutions, and continuously improving the overall customer experience.<br>\r\n<br>\r\n\r\n\r\nThroughout her career, Ruby has navigated a range of challenges with poise and proficiency. Her communication skills and critical thinking abilities have played a crucial role in her success as a leader. Whether addressing operational hurdles or devising creative solutions, Ruby’s dedication to continuous improvement and service excellence stands out.<br>\r\n<br>\r\n\r\n\r\nRuby’s professional journey is characterized by her unwavering commitment to customer care, her passion for lifelong learning, and her drive to make a meaningful impact in her field. Her combination of academic achievements, managerial expertise, and compassionate approach to service continues to inspire those around her.<br>\r\n<br>\r\n\r\n\r\nOutside of work, Ruby finds solace and joy in the great outdoors. Hiking has become a beloved hobby, allowing her to connect with nature, challenge herself physically, and experience moments of serenity away from the hustle and bustle of everyday life. This passion for hiking reflects her adventurous spirit and her openness to new experiences.<br>\r\n<br>\r\n\r\n\r\nIn addition to her outdoor pursuits, Ruby is an avid reader. She finds both inspiration and enlightenment within the pages of books, whether escaping into fiction or expanding her knowledge through non-fiction. For Ruby, reading represents a continuous journey of personal growth, exploration, and intellectual stimulation.</p>\r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-17 06:57:20', '2025-03-31 14:42:20'),
(6, 6, 19, 8, 'Registered Physiotherapist', 1, 1, '2025-03-17 07:46:42', '2025-04-03 12:56:13'),
(7, 7, 20, 8, '80', 1, 1, '2025-03-17 07:46:42', '2025-03-31 14:12:03'),
(8, 6, 19, 9, 'Registered Massage Therapist', 1, 1, '2025-03-17 07:47:55', '2025-04-03 12:56:49'),
(9, 7, 20, 9, '78', 1, 1, '2025-03-17 07:47:55', '2025-03-31 14:15:46'),
(10, 7, 20, 10, '84', 1, 1, '2025-03-17 07:48:54', '2025-03-31 14:16:33'),
(11, 6, 19, 11, 'Physiotherapy Assistant/Personal Trainer', 1, 1, '2025-03-17 07:50:56', '2025-03-31 14:18:02'),
(12, 7, 20, 11, '82', 1, 1, '2025-03-17 07:51:22', '2025-03-31 14:18:02'),
(13, 6, 19, 12, 'Physiotherapy Assistant', 1, 1, '2025-03-17 07:52:28', '2025-03-17 07:54:00'),
(14, 7, 20, 12, '81', 1, 1, '2025-03-17 07:52:28', '2025-03-31 14:20:03'),
(15, 6, 19, 13, 'Physiotherapy Assistant', 1, 1, '2025-03-17 07:53:41', '2025-04-03 12:57:42'),
(16, 7, 20, 13, '86', 1, 1, '2025-03-17 07:53:41', '2025-03-31 14:20:51'),
(17, 6, 19, 14, 'Billing Coordinator', 1, 1, '2025-03-17 07:55:24', '2025-03-31 14:21:14'),
(18, 7, 20, 14, '6', 1, 1, '2025-03-17 07:55:24', '2025-03-20 15:52:11'),
(19, 6, 15, 15, 'Explore Our Main Service', 1, 1, '2025-03-17 07:57:29', '2025-07-07 15:25:50'),
(20, 7, 16, 16, '31', 1, 1, '2025-03-17 08:04:34', '2025-03-17 11:54:49'),
(21, 8, 17, 16, '32', 1, 1, '2025-03-17 08:04:34', '2025-03-17 11:54:49'),
(22, 9, 18, 16, 'Promoting, preventing, treating/intervention, habilitating, and rehabilitating people is the primary...', 1, 1, '2025-03-17 08:04:34', '2025-03-17 11:54:49'),
(23, 1, 9, 16, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser7.jpg\']\" class=\"team-img\" alt=\"SERVICE\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Promoting, preventing, treating/intervention, habilitating, and rehabilitating people is the primary focus of physiotherapy, which aims to maximize mobility potential and quality of life. Through the use of physiotherapist-specific knowledge and abilities, a multi-professional team including patients/clients, other medical professionals, families, carers, and communities works to evaluate mobility potential and establish mutually beneficial treatment objectives. Physiotherapists diagnose patients and devise treatment plans by reviewing medical history, conducting physical examinations, and, where appropriate, incorporating findings from imaging and laboratory tests.  Encouraging individuals of all ages to embrace their bodies is the passion of Alliston Physiotherapy. \r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n\r\n         <p>\r\n            <br>\r\n\r\n            One of our physiotherapists in Alliston will examine you to identify your current physical limitations, your\r\n            functional capacity, and the best course of therapy. That way, you and our staff can decide what to work on\r\n            in treatment. During your first evaluation, our Alliston physiotherapist will estimate the recommended\r\n            treatment duration. Appointments might vary in duration based on the severity and quantity of affected\r\n            regions; please ensure that they are convenient for you. Our team of physiotherapists is here to help you\r\n            get back to the things you love, whether you\'ve been dealing with chronic back or neck pain, a shoulder\r\n            injury, vertigo, an injury from jogging, or a concussion diagnosis.\r\n\r\n         </p>', 1, 1, '2025-03-17 08:04:34', '2025-03-17 11:55:08'),
(24, 1, 10, 34, '<section class=\"appoinment-form  appointment-page pt-pb-130 \">\r\n    <div class=\"container\">\r\n      <div class=\"row\">\r\n        <div class=\"col-xl-12\">\r\n          <div class=\"appoinment-box\">\r\n                <center>\r\n                  <h1>Initial Intake Form</h1>\r\n                  <h4>Alliston Physiotherapy + Sports Rehab</h4>\r\n                  <p>The information request below will assist us in treating you safely. Feel free to ask any questions about\r\n                    the information being requested. Please note that all information provided below will be kept\r\n                    confidentially unless allowed or required by law. Your written permission will be required to release\r\n                    any information. </p>\r\n                </center>\r\n                [shortcode_form name=\"_new-patient-form\" route=\"web.new-patient.save\"]\r\n          </div>\r\n        </div>\r\n\r\n      </div>\r\n    </div>\r\n  </section>', 1, 1, '2025-03-17 08:24:28', '2025-03-19 20:12:39'),
(25, 1, 13, 36, '<section class=\"pq-service pb-0\">\r\n    <div class=\"container\">\r\n        <div class=\"row\">\r\n            <div class=\"col-lg-12\">\r\n                <div class=\"pq-section pq-style-1 text-center\">                     \r\n                    <h5 class=\"pq-section-title\">Conditions we treat</h5>\r\n                </div>\r\n            </div>\r\n        </div>\r\n        <div class=\"row justify-content-center\">\r\n            <div class=\"col-xl-6 col-lg-6\">\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Low back pain, sciatica</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Concussions</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Neck pain </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Disc injuries </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Knee injuries </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Headaches </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Running related injuries </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Sports injuries </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-1\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Tendonitis </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n            <div class=\"col-xl-6 col-lg-6 mt-4 mt-xl-0\">\r\n                <div class=\"body-img\"> <img src=\"[asset path=\'images/body1.png\']\" alt=\"service-img\">\r\n                    <div class=\"p1\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Headaches</span></span></div>\r\n                    <div class=\"p2\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Neck pain</span></span></div>\r\n                    <div class=\"p3\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Sciatica</span></span></div>\r\n                    <div class=\"p4\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Knee injuries </span></span>\r\n                    </div>\r\n                    <div class=\"p5\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Sports injuries\r\n                            </span></span></div>\r\n                </div>\r\n            </div>\r\n            <div class=\"col-xl-6 col-lg-6 mt-4 mt-xl-0\">\r\n                <div class=\"body-img\"> <img src=\"[asset path=\'images//body2.png\']\" alt=\"service-img\">\r\n                    <div class=\"p6\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Disc injuries </span></span>\r\n                    </div>\r\n                    <div class=\"p7\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Shoulder injuries, shoulder\r\n                                pain, rotator cuff injuries </span></span></div>\r\n                    <div class=\"p8\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Tennis Elbow </span></span>\r\n                    </div>\r\n                    <div class=\"p9\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Hip Replacements\r\n                            </span></span></div>\r\n                    <div class=\"p10\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Knee\r\n                                Replacements</span></span></div>\r\n                    <div class=\"p11\"><span class=\"firstSpan\"><a href=\"javascript:void(0) \"><span class=\"circle\"></span><i class=\"fa-map-marker-alt fa\"></i></a> <span class=\"secondSpan\">Plantar Fasciitis\r\n                            </span></span></div>\r\n                </div>\r\n            </div>\r\n            <div class=\"col-xl-6 col-lg-6\">\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Shoulder injuries, shoulder pain, rotator cuff\r\n                                    injuries </a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> TMJ (temperomandibular joint dysfunction)</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Knee replacements</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Hip replacements</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Post surgery</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Vestibular disorders (dizziness)</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Tennis elbow</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"pq-icon-box pq-style-2\">\r\n                    <div class=\"pq-icon-box-wrapper\">\r\n                        <div class=\"pq-icon-box-content\">\r\n                            <h6 class=\"pq-icon-box-title\"><a href=\"javascript:void(0) \"><i aria-hidden=\"true\" class=\"ion ion-checkmark-round\"></i> Plantar fasciitis</a></h6>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </div>\r\n</section>', 1, 1, '2025-03-17 08:27:10', '2025-03-18 20:02:01'),
(26, 1, 5, 4, '<section class=\"pq-contact-us\">\r\n      <div class=\"container\">\r\n         <div class=\"row justify-content-center\">\r\n            <div class=\"col-lg-3 col-md-6 col-sm-12\">\r\n               <div class=\"pq-contact-box\">\r\n                  <div class=\"pq-contact-box-icon\">\r\n                     <div class=\"icon animation-grow\"> <i aria-hidden=\"true\" class=\"ion ion-location\"></i> </div>\r\n                  </div>\r\n                  <div class=\"pq-contact-box-info\">\r\n                     <h4 class=\"pq-contact-box-title\">\r\n                        Our Location\r\n                     </h4>\r\n                     <p class=\"pq-contact-box-description\"> 27 Victoria Street E, Alliston, ON L9R 1T9, Canada </p>\r\n                  </div>\r\n               </div>\r\n            </div>\r\n            <div class=\"col-lg-3 col-md-6 col-sm-12 mt-lg-0 mt-md-0 mt-4\">\r\n               <div class=\"pq-contact-box\">\r\n                  <div class=\"pq-contact-box-icon\">\r\n                     <div class=\"icon animation-grow\"> <i aria-hidden=\"true\" class=\"ion ion-ios-telephone\"></i> </div>\r\n                  </div>\r\n                  <div class=\"pq-contact-box-info\">\r\n                     <h4 class=\"pq-contact-box-title\">\r\n                        Phone\r\n                     </h4>\r\n                     <p class=\"pq-contact-box-description\"> 705-434-0645\r\n                        <br> 705-435-5153\r\n                     </p>\r\n                  </div>\r\n               </div>\r\n            </div>\r\n\r\n            <div class=\"col-lg-3 col-md-6 col-sm-12 mt-lg-0 mt-md-0 mt-4\">\r\n               <div class=\"pq-contact-box\">\r\n                  <div class=\"pq-contact-box-icon\">\r\n                     <div class=\"icon animation-grow\"> <i aria-hidden=\"true\" class=\"ion ion-ios-telephone\"></i> </div>\r\n                  </div>\r\n                  <div class=\"pq-contact-box-info\">\r\n                     <h4 class=\"pq-contact-box-title\">\r\n                        Fax\r\n                     </h4>\r\n                     <p class=\"pq-contact-box-description\"> 705-435-5754<br>\r\n                        <br>\r\n                     </p>\r\n                  </div>\r\n               </div>\r\n            </div>\r\n            <div class=\"col-lg-3 col-md-6 col-sm-12 mt-lg-0 mt-4\">\r\n               <div class=\"pq-contact-box\">\r\n                  <div class=\"pq-contact-box-icon\">\r\n                     <div class=\"icon animation-grow\"> <i aria-hidden=\"true\" class=\"ion ion-email-unread\"></i> </div>\r\n                  </div>\r\n                  <div class=\"pq-contact-box-info\">\r\n                     <h4 class=\"pq-contact-box-title\">\r\n                        E-mail\r\n                     </h4>\r\n                     <p class=\"pq-contact-box-description\"> info@allistonphysiotherapy.ca\r\n                        <br>\r\n                        <br>\r\n                     </p>\r\n                  </div>\r\n               </div>\r\n            </div>\r\n         </div>\r\n\r\n         <br>\r\n         <br>\r\n\r\n\r\n         <center>\r\n            <h3>Free Parking is available at the back of the building on Wellington Street</h3>\r\n         </center>\r\n\r\n\r\n      </div>\r\n   </section>\r\n\r\n\r\n   <section class=\"get-in-touch p-0\">\r\n      <div class=\"container\">\r\n         <div class=\"row\">\r\n            <div class=\"col-lg-8 col-md-8  pq-form-box\">\r\n               <div class=\"form-container\">\r\n                  <div class=\"pq-section pq-style-1 text-center p-0\">\r\n                     <h5 class=\"pq-section-title\">Get in touch with us</h5>\r\n                  </div>\r\n               </div>\r\n               <div class=\"pq-applyform-whitebg text-start\">\r\n                  [shortcode_form name=\"_contact-form\" route=\"web.contact.save\"]\r\n               </div>\r\n            </div>\r\n         </div>\r\n      </div>\r\n   </section>\r\n<!--=================================\r\n         map start-->\r\n   <div class=\"map pt-0\">\r\n      <div class=\"pq-bg-map\">\r\n         <iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2862.584353043418!2d-79.868112!3d44.1538141!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x882aeef382ec5ffd%3A0x7b4e832692e2da2a!2sAlliston%20Physiotherapy%20%26%20Sports%20Rehabilitation!5e0!3m2!1sen!2sin!4v1740475466184!5m2!1sen!2sin\" width=\"100%\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe>\r\n\r\n\r\n      </div>\r\n   </div>\r\n   <!--=================================\r\n         map end-->', 1, 1, '2025-03-17 08:32:23', '2025-03-18 18:17:38'),
(28, 1, 12, 37, '<section class=\"appoinment-form  appointment-page \">\r\n    <div class=\"container\">\r\n      <div class=\"row\">\r\n        <div class=\"col-xl-6\">\r\n          <div class=\"appoinment-box\">\r\n            [shortcode_form name=\"_booking-appointment-form\" route=\"web.book-appointment.save\"]\r\n          </div>\r\n        </div>\r\n        <div class=\"col-xl-6\">\r\n          <div class=\"appointment-img text-center\"> <img src=\"[asset path=\'images/2.png\']\" alt=\"book\" class=\"img-a \" style=\"max-width:100%; width:auto;\"> </div>\r\n        </div>\r\n      </div>\r\n    </div>\r\n  </section>', 1, 0, '2025-03-17 08:41:19', NULL),
(29, 5, 22, 1, '1', 1, 1, '2025-03-17 09:05:56', '2025-03-17 09:18:39');
INSERT INTO `tasap_custom_field_group_type_values` (`cf_group_type_value_id`, `cf_group_type_id`, `cf_gt_class_template_id`, `data_id`, `field_value`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(30, 1, 1, 1, '<section class=\"about pq-bg-grey pq-dark-bg-side-right\" style=\"padding-bottom:50px;\">\r\n  <div class=\"container\">\r\n    <div class=\"row \">\r\n      <div class=\"col-lg-6 col-md-12 col-xl-5 pb-lg-0 pb-5\">\r\n        <div class=\"pq-section pq-style-1 text-left mb-4\"> <!--<span class=\"pq-section-sub-title\"></span> -->\r\n          <h5 class=\"pq-section-title\">Welcome to Alliston Physiotherapy &amp; Sports Rehabilitation</h5>\r\n          <h6>Serving Community Since 1997</h6>\r\n        </div>\r\n        <div class=\"pq-about-info-box mt-1\">\r\n          <div class=\"pq-about-info-box-icon\"> <img src=\"[asset path=\'images/icons/3.png\']\"> </div>\r\n          <div class=\"pq-about-info-box-info\">\r\n            <h5>Physiotherapy</h5>\r\n            <p>Physiotherapy is a health care profession which provides services...</p>\r\n          </div>\r\n        </div>\r\n        <div class=\"pq-about-info-box mt-1\">\r\n          <div class=\"pq-about-info-box-icon\"> <img src=\"[asset path=\'images/icons/7.png\']\"> </div>\r\n          <div class=\"pq-about-info-box-info\">\r\n            <h5>Sports Injury</h5>\r\n            <p>Injuries are common when participating in sports. They can range...</p>\r\n          </div>\r\n        </div>\r\n        <div class=\"pq-about-info-box mt-1\">\r\n          <div class=\"pq-about-info-box-icon\"> <img src=\"[asset path=\'images/icons/2.png\']\"> </div>\r\n          <div class=\"pq-about-info-box-info\">\r\n            <h5>Massage Therapy</h5>\r\n            <p>MassageTherapy is a hands-on manipulation of the soft tissues...</p>\r\n          </div>\r\n        </div> <a class=\"pq-button pq-button-flat mt-4\" href=\"/services\">\r\n          <div class=\"pq-button-block\"> <span class=\"pq-button-text\">View All</span> <i class=\"ion ion-plus-round\"></i>\r\n          </div>\r\n        </a>\r\n      </div>\r\n      <div class=\"col-lg-6 col-md-12 col-xl-7 pe-lg-3 pq-img-none\"> <img src=\"[asset path=\'images/1.png\']\" class=\"img-fluid\" alt=\"servicebox\"> </div>\r\n      <!--<div class=\"col-xl-2 col-lg-12 col-md-12 py-xl-0 py-5 align-self-center pq-form-counter \"> <div class=\"pq-counter pq-style-2\"> <div class=\"pq-counter-contain\"> <div class=\"pq-counter-info text-center\"> <div class=\"pq-counter-num-prefix\"> <h5 class=\"timer\" data-to=\"450\" data-speed=\"5000\">450</h5> <span class=\"pq-counter-prefix\">+</span> </div> <div class=\"pq-counter-num-prefix pq-prefix-top\"> <h5 class=\"timer\" data-to=\"450\" data-speed=\"5000\">450</h5> <span class=\"pq-counter-prefix\">+</span> </div> <p class=\"pq-counter-description\">HAPPY PATIENTS</p> </div> </div> </div> <div class=\"pq-counter pq-style-2\"> <div class=\"pq-counter-contain\"> <div class=\"pq-counter-info text-center\"> <div class=\"pq-counter-num-prefix\"> <h5 class=\"timer\" data-to=\"100\" data-speed=\"5000\">100</h5> <span class=\"pq-counter-prefix\">+</span> </div> <div class=\"pq-counter-num-prefix pq-prefix-top\"> <h5 class=\"timer\" data-to=\"100\" data-speed=\"5000\">100</h5> <span class=\"pq-counter-prefix\">+</span> </div> <p class=\"pq-counter-description\">SAVED HEARTS</p> </div> </div> </div> <div class=\"pq-counter pq-style-2\"> <div class=\"pq-counter-contain\"> <div class=\"pq-counter-info text-center\"> <div class=\"pq-counter-num-prefix\"> <h5 class=\"timer\" data-to=\"59\" data-speed=\"5000\">59</h5> <span class=\"pq-counter-prefix\">+</span> </div> <div class=\"pq-counter-num-prefix pq-prefix-top\"> <h5 class=\"timer\" data-to=\"59\" data-speed=\"5000\">59</h5> <span class=\"pq-counter-prefix\">+</span> </div> <p class=\"pq-counter-description\">EXPERT DOCTORS</p> </div> </div> </div> </div> -->\r\n    </div>\r\n  </div>\r\n</section>\r\n<!--Section about End-->\r\n\r\n<!--Section service start-->\r\n<section class=\"service\">\r\n  <div class=\"container\">\r\n    <div class=\"row\">\r\n      <div class=\"col-lg-12\">\r\n        <div class=\"pq-section pq-style-1 text-center\">\r\n          <h5 class=\"pq-section-title\">Our Services</h5>\r\n        </div>\r\n      </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-bottom pq-lg-border-right\"> <a href=\"/service/physiotherapy\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/3.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/3.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">Physiotherapy</h6>\r\n              <p class=\"pq-fancybox-description\">Promoting, preventing, treating/intervention, ... </p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-bottom pq-lg-border-right\"> <a href=\"/service/massage-therapy\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/2.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/2.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">Massage Therapy</h6>\r\n              <p class=\"pq-fancybox-description\">A variety of compression and decompression methods ... </p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-bottom pq-lg-border-right\"> <a href=\"/service/vestibular-rehabilitation\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/1.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/1.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">Vestibular Rehabilitation</h6>\r\n              <p class=\"pq-fancybox-description\">Vestibular rehabilitation is a specific kind ... </p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-bottom pq-lg-border-right\"> <a href=\"/service/concussion-management\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/16.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/16.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">Concussion Management</h6>\r\n              <p class=\"pq-fancybox-description\">A concussion is a brain injury induced ... </p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-bottom pq-lg-border-right\"> <a href=\"/service/tmj-treatments\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/4.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/4.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">TMJ Treatments</h6>\r\n              <p class=\"pq-fancybox-description\">A number of factors may cause the ... </p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-bottom pq-lg-border-right\"> <a href=\"/service/shock-wave-therapy\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/9.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/9.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">Shock Wave Therapy</h6>\r\n              <p class=\"pq-fancybox-description\">hockwave therapy is a typical therapeutic method... </p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-right pq-lg-border-bottom\"> <a href=\"/service/laser-therapy\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/5.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/5.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">Laser Therapy</h6>\r\n              <p class=\"pq-fancybox-description\">A cutting-edge medical procedure, laser ...</p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <div class=\"col-md-6 col-lg-4 col-xl-3 pq-lg-border-bottom pq-lg-border-right\"> <a href=\"/service/manipulation\">\r\n          <div class=\"pq-fancy-box pq-style-1 text-center\">\r\n            <div class=\"pq-fancy-box-hoverbg\"> <img src=\"[asset path=\'images/services/6.jpg\']\" class=\"img-fluid\" alt=\"Images\"> </div>\r\n            <div class=\"pq-fancy-box-icon\"><img src=\"[asset path=\'images/icons/6.png\']\"></div>\r\n            <div class=\"pq-fancy-box-info\">\r\n              <h6 class=\"pq-fancy-box-title\">Manipulation</h6>\r\n              <p class=\"pq-fancybox-description\">A physiotherapist may alleviate discomfort... </p>\r\n              <div class=\"pq-button pq-button-link\">\r\n                <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Read More</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </a> </div>\r\n      <center><a class=\"pq-button pq-button-flat\" href=\"/services\">\r\n          <div class=\"pq-button-block\"> <span class=\"pq-button-text\">View All</span> <i class=\"ion ion-plus-round\"></i>\r\n          </div>\r\n        </a></center>\r\n    </div>\r\n  </div>\r\n</section>\r\n<!--Section service End-->\r\n\r\n<div class=\"mid-banner\">\r\n  <div class=\"background-overlay\"></div>\r\n  <div class=\"container\">\r\n    <div class=\"col-md-6\">\r\n      <div class=\"mid-banner-box\">\r\n        <div class=\"mid-banner-box-inner\">\r\n          <h2 class=\"text-white\">We Accept all Insurances, WSIB and Motor Vehicle Claims.</h2>\r\n        </div>\r\n      </div>\r\n    </div>\r\n    <div class=\"col-md-6\">\r\n      <div class=\"mid-banner-phone\">\r\n        <center><a class=\"pq-button pq-button-flat\" href=\"/book-appointment\">\r\n            <div class=\"pq-button-block\"> <span class=\"pq-button-text\">Get Appointment</span> <i class=\"ion ion-plus-round\"></i> </div>\r\n          </a></center> <br> <br>\r\n        <div class=\"mid-banner-phone-inner\">\r\n          <div class=\"box\">\r\n            <div class=\"box-left\"> <span class=\"elementor-icon elementor-animation-pulse\"> <i aria-hidden=\"true\" class=\"fa fa-phone\"></i> </span> </div>\r\n            <div class=\"box-right\">\r\n              <h4 class=\"text-white\"> <span> Contact Us </span> </h4>\r\n              <h2 class=\"text-white\"> 705-434-0645 </h2>\r\n            </div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </div>\r\n  </div>\r\n</div>\r\n<section class=\"\">\r\n  <div class=\"container\">\r\n    <div class=\"col-md-8 offset-2\">\r\n      <center>\r\n        <h2 class=\"pq-section-title\">EMERGENCY ATTENTION </h2> <br>\r\n        <h6>Emergency often require Immediate attention and can be addressed the same day. We can be reached by phone or\r\n          email 5 days a week for Immediate Attention.</h6>\r\n      </center>\r\n    </div>\r\n  </div>\r\n</section>\r\n<div class=\"\">\r\n  <div class=\"container\">\r\n    <div class=\"row\">\r\n      <div class=\"col-md-4\" style=\"padding:0;\"> <img src=\"[asset path=\'images/hm1.jpg\']\">\r\n        <div class=\"mid-box1\">\r\n          <div class=\"mid-box-inner\">\r\n            <figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"112\" style=\"max-width:100%; width:100px; height:auto;\" height=\"112\" src=\"https://medicot-wordpress.themecreatorslab.com/wp-content/uploads/2024/03/shield.png\" class=\" wp-image-2214\" alt=\"\"></figure>\r\n            <div class=\"elementor-image-box-content\">\r\n              <h3 class=\"text-white\">Safety &amp; Reliable</h3>\r\n              <p class=\"text-white\"> </p>\r\n            </div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n      <div class=\"col-md-4\" style=\"padding:0;\">\r\n        <div class=\"mid-box2\">\r\n          <div class=\"mid-box-inner\">\r\n            <figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"200\" height=\"200\" style=\"max-width:100%; width:100px; height:auto;\" src=\"https://medicot-wordpress.themecreatorslab.com/wp-content/uploads/2025/01/si-2.png\" class=\"attachment-full size-full wp-image-2484\" alt=\"\"></figure>\r\n            <div class=\"elementor-image-box-content\">\r\n              <h3 class=\"text-white\">Professional Staff</h3>\r\n              <p class=\"text-white\"> </p>\r\n            </div>\r\n          </div>\r\n        </div> <img src=\"[asset path=\'images/hm.jpg\']\">\r\n      </div>\r\n      <div class=\"col-md-4\" style=\"padding:0;\">\r\n        <div class=\"mid-box3\"></div>\r\n      </div>\r\n    </div>\r\n  </div>\r\n</div><!--Section Start-->\r\n\r\n<section class=\"about\">\r\n  <div class=\"container\">\r\n    <div class=\"row\">\r\n      <div class=\"col-lg-12\">\r\n        <div class=\"pq-section pq-style-1 text-center\">\r\n          <h5 class=\"pq-section-title\">Explore Your Best Services</h5>\r\n        </div>\r\n      </div>\r\n    </div>\r\n    <div class=\"col-lg-12\">\r\n      <div class=\"pq-tabs-1\">\r\n        <div class=\"nav nav-tabs nav-fill\" id=\"nav-tab\" role=\"tablist\"> <a class=\"pq-tabs nav-item nav-link \" id=\"nav-home-0\" data-bs-toggle=\"tab\" href=\"#nav-0\" role=\"tab\" aria-controls=\"nav-home-0\" aria-selected=\"true\">\r\n            <div class=\"inner\"> <i class=\" flaticon-medical-doctor\"></i><span>Feel The Change</span> </div>\r\n          </a> <a class=\"pq-tabs nav-item nav-link \" id=\"nav-home-1\" data-bs-toggle=\"tab\" href=\"#nav-1\" role=\"tab\" aria-controls=\"nav-home-1\" aria-selected=\"true\">\r\n            <div class=\"inner\"> <i class=\" flaticon-doctor\"></i><span>Live Well</span> </div>\r\n          </a> <a class=\"pq-tabs nav-item nav-link \" id=\"nav-home-2\" data-bs-toggle=\"tab\" href=\"#nav-2\" role=\"tab\" aria-controls=\"nav-home-2\" aria-selected=\"true\">\r\n            <div class=\"inner\"> <i class=\" flaticon-care\"></i><span>Your Health Is Our Focus</span> </div>\r\n          </a> <a class=\"pq-tabs nav-item nav-link \" id=\"nav-home-3\" data-bs-toggle=\"tab\" href=\"#nav-3\" role=\"tab\" aria-controls=\"nav-home-3\" aria-selected=\"true\">\r\n            <div class=\"inner\"> <i class=\" flaticon-examination\"></i><span>Strive For Progress</span> </div>\r\n          </a> </div>\r\n      </div>\r\n    </div>\r\n  </div>\r\n</section>\r\n<!--Section End-->\r\n<!--<div class=\"happy\"><div class=\"container\"><div class=\"pq-section pq-style-1 text-center\"> <h5 class=\"pq-section-title\">Explore Your Best Services</h5> </div><div class=\"happy-div\"><div class=\"row\"><div class=\"col-md-3\"><div class=\"happy-box\"><div class=\"inner-icon\"><center><img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"512\" src=\"[asset path=\'images/rating.png\']\" class=\"attachment-large size-large wp-image-2221\" alt=\"\" ></center></div></div><div class=\"happy-txt\"><h6>Happy Clients</h6><h4>12K</h4></div></div><div class=\"col-md-3\"><div class=\"happy-box\"><div class=\"inner-icon\"><center><img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"512\" src=\"[asset path=\'images/team-1.png\']\" class=\"attachment-large size-large wp-image-2221\" alt=\"\" ></center></div></div><div class=\"happy-txt\"><h6>Employees</h6><h4>300</h4></div></div><div class=\"col-md-3\"><div class=\"happy-box\"><div class=\"inner-icon\"><center><img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"512\" src=\"[asset path=\'images/shield.png\']\" class=\"attachment-large size-large wp-image-2221\" alt=\"\" ></center></div></div><div class=\"happy-txt\"><h6>Project Done</h6><h4>10K</h4></div></div><div class=\"col-md-3\"><div class=\"happy-box\"><div class=\"inner-icon\"><center><img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"512\" src=\"[asset path=\'images/annual-report.png\']\" class=\"attachment-large size-large wp-image-2221\" alt=\"\" ></center></div></div><div class=\"happy-txt\"><h6>Annual Turnover</h6><h4>15K</h4></div></div></div></div></div></div> -->\r\n<!--Section team start-->\r\n\r\n<!--Section team End-->\r\n\r\n<div class=\"home-form\">\r\n  <div class=\"container\">\r\n    <div class=\"row\">\r\n      <div class=\"col-md-6\">\r\n        <div class=\"pq-section pq-style-1 text-white\">\r\n          <h2 class=\"pq-section-title text-white\">Get Connect Online &amp; Resolve your problems </h2>\r\n        </div>\r\n        <p class=\"text-white\"> Connect with our experienced healthcare professionals online to get the support and care\r\n          that you need from the comfort of your own home. Our telehealth services make it easy to resolve your health\r\n          issues quickly and conveniently.</p>\r\n        <h5 class=\"text-white\">Customer support</h5>\r\n        <p class=\"text-white\">Our friendly customer support team is here to assist you with any questions or concerns\r\n          you may have. Contact us via phone, email, or in-person for prompt and helpful assistance.</p>\r\n        <div class=\"row\">\r\n          <div class=\"col-md-6\">\r\n            <div class=\"home-form-phone\">\r\n              <div class=\"home-form-phone-icon\"> <span class=\"inner\"><i aria-hidden=\"true\" class=\"fa fa-phone\"></i></span> </div>\r\n              <div class=\"home-form-phone-cont\">\r\n                <h5 class=\"text-white\"> <span> Emergency Call </span> </h5> <span class=\"text-white\"> 705-434-0645\r\n                </span>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <div class=\"col-md-6\">\r\n            <div class=\"home-form-phone\">\r\n              <div class=\"home-form-phone-icon\"> <span class=\"inner\"><i aria-hidden=\"true\" class=\"fa fa-envelope\"></i></span> </div>\r\n              <div class=\"home-form-phone-cont\">\r\n                <h5 class=\"text-white\"> <span> E-mail </span> </h5> <span class=\"text-white\">\r\n                  info@allistonphysiotherapy.ca </span>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n      <div class=\"col-md-6\">\r\n        <div class=\"home-form-box\">\r\n          <div class=\"pq-section pt-style-1 text-left\">\r\n            <h5 class=\"pq-section-title mb-4\">Book an Appointment</h5>\r\n          </div>\r\n          <div class=\"pq-applyformX\">            \r\n            [shortcode_form name=\"_quick_booking-form\" route=\"web.contact.quicksave\"]\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </div>\r\n  </div>\r\n</div>\r\n<!--Section testimonial Start-->\r\n\r\n<section class=\"testimonial pg-border-bottom pq-testimonial-pt\">\r\n  <div class=\"container\">\r\n    <div class=\"row\">\r\n      <div class=\"col-lg-12\">\r\n        <div class=\"pq-section pq-style-1 text-center\">\r\n          <h5 class=\"pq-section-title text-white\">What Our Happy Customer Say </h5>\r\n        </div>\r\n      </div>\r\n      <div class=\"col-lg-12\">\r\n        <div class=\"owl-carousel owl-theme\" data-dots=\"true\" data-nav=\"false\" data-desk_num=\"1\" data-lap_num=\"1\" data-tab_num=\"1\" data-mob_num=\"1\" data-mob_sm=\"1\" data-autoplay=\"true\" data-loop=\"true\" data-margin=\"30\">\r\n          <div class=\"item\">\r\n            <div class=\"pq-testimonial-box pq-style-1\"> <span class=\"icon icon-quote\"></span>\r\n              <div class=\"pq-testimonial-info\">\r\n                <div class=\"pq-testimonial-content\">\r\n                  <p>My experience at Alliston Physiotherapy was very positive. The staff was welcoming and professional\r\n                    from the start, and the clinic itself was clean and well-organized. My physiotherapist was\r\n                    attentive, taking the time to thoroughly assess my ankle injury and explaining the treatment plan in\r\n                    detail. I felt supported throughout the process and appreciated the personalized approach to my\r\n                    recovery. The exercises they provided have helped me regain strength and mobility faster than I\r\n                    expected. The overall experience was great, and I would definitely recommend Alliston physiotherapy\r\n                    to others looking for effective physiotherapy treatment.</p>\r\n                </div>\r\n              </div>\r\n              <div class=\"pq-testimonial-media\">\r\n                <!--<div class=\"pq-testimonial-img\"> <img src=\"[asset path=\'images/testimonial/1.png\']\" class=\"img-fluid\" alt=\"testimonial-image\"> </div> -->\r\n                <div class=\"pq-testimonial-meta\">\r\n                  <h5>Adish M</h5> <span>Patient </span>\r\n                </div>\r\n                <div class=\"pq-testimonial-icon\"> <i class=\"fas fa-quote-right\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <div class=\"item\">\r\n            <div class=\"pq-testimonial-box pq-style-1\"> <span class=\"icon icon-quote\"></span>\r\n              <div class=\"pq-testimonial-info\">\r\n                <div class=\"pq-testimonial-content\">\r\n                  <p>Alliston Physiotherapy &amp; Sports Rehab has helped my husband and I with our shoulder pain greatly in\r\n                    the last few weeks. Harman and his staff are very friendly, patient and knowledgeable. We both have\r\n                    found immense relief with our separate issues between suggested home exercises and various methods\r\n                    of pain relief that the clinic has provided at the time of our visits. They are efficient and\r\n                    flexible with their time which made it very convenient for our sometimes complicated schedules.\r\n                    Someone is always there to greet you and place you in a bed right away. We have already recommended\r\n                    the clinic to friends and family. As much as we don\'t want the pain or need to return, we will relay\r\n                    on Alliston Physiotherapy when we need help.</p>\r\n                </div>\r\n              </div>\r\n              <div class=\"pq-testimonial-media\">\r\n                <!--<div class=\"pq-testimonial-img\"> <img src=\"[asset path=\'images/testimonial/1.png\']\" class=\"img-fluid\" alt=\"testimonial-image\"> </div> -->\r\n                <div class=\"pq-testimonial-meta\">\r\n                  <h5>Angela Plati</h5> <span>Patient</span>\r\n                </div>\r\n                <div class=\"pq-testimonial-icon\"> <i class=\"fas fa-quote-right\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <div class=\"item\">\r\n            <div class=\"pq-testimonial-box pq-style-1\"> <span class=\"icon icon-quote\"></span>\r\n              <div class=\"pq-testimonial-info\">\r\n                <div class=\"pq-testimonial-content\">\r\n                  <p>Harman and his team are very knowledgeable and professional. I have been working with them for my\r\n                    leg injury in 2018 and this past few years for lower back and neck injuries from work. I have\r\n                    nothing but positive feedback as they have carefully taken care of each issue. I thank Harman and\r\n                    his professional staff for going above and beyond with highly motivated people. Top notch services\r\n                    and staff of the art technology.</p>\r\n                </div>\r\n              </div>\r\n              <div class=\"pq-testimonial-media\">\r\n                <!--<div class=\"pq-testimonial-img\"> <img src=\"[asset path=\'images/testimonial/1.png\']\" class=\"img-fluid\" alt=\"testimonial-image\"> </div> -->\r\n                <div class=\"pq-testimonial-meta\">\r\n                  <h5>Rod Ghorabi</h5> <span>Patient </span>\r\n                </div>\r\n                <div class=\"pq-testimonial-icon\"> <i class=\"fas fa-quote-right\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <div class=\"item\">\r\n            <div class=\"pq-testimonial-box pq-style-1\"> <span class=\"icon icon-quote\"></span>\r\n              <div class=\"pq-testimonial-info\">\r\n                <div class=\"pq-testimonial-content\">\r\n                  <p>As someone who struggled with kneecap dislocations, Alliston physiotherapy clinic was a\r\n                    game-changer. The team\'s professionalism and warmth put me at ease. Their personalized treatment\r\n                    plan has transformed my knee stability. The clinic is modern, clean, and well-equipped. Appointments\r\n                    are flexible, and the front desk team is cheerful. If you have chronic knee issues, this clinic\r\n                    genuinely cares about your recovery. Thanks to Alliston physiotherapy clinic, I\'ve regained control\r\n                    of my life and feel optimistic. Forever grateful!</p>\r\n                </div>\r\n              </div>\r\n              <div class=\"pq-testimonial-media\">\r\n                <!--<div class=\"pq-testimonial-img\"> <img src=\"[asset path=\'images/testimonial/1.png\']\" class=\"img-fluid\" alt=\"testimonial-image\"> </div> -->\r\n                <div class=\"pq-testimonial-meta\">\r\n                  <h5>Jithin Jose</h5> <span>Patient </span>\r\n                </div>\r\n                <div class=\"pq-testimonial-icon\"> <i class=\"fas fa-quote-right\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <div class=\"item\">\r\n            <div class=\"pq-testimonial-box pq-style-1\"> <span class=\"icon icon-quote\"></span>\r\n              <div class=\"pq-testimonial-info\">\r\n                <div class=\"pq-testimonial-content\">\r\n                  <p>Everyone was very polite, kind, knowledgeable. Very good atmosphere. I have arthritis in my hip and\r\n                    they were able to help with the pain and show me stretches to help with it on a daily basis. I would\r\n                    very much recommend them to anyone.</p>\r\n                </div>\r\n              </div>\r\n              <div class=\"pq-testimonial-media\">\r\n                <!--<div class=\"pq-testimonial-img\"> <img src=\"[asset path=\'images/testimonial/1.png\']\" class=\"img-fluid\" alt=\"testimonial-image\"> </div> -->\r\n                <div class=\"pq-testimonial-meta\">\r\n                  <h5>SuDs G</h5> <span>Patient </span>\r\n                </div>\r\n                <div class=\"pq-testimonial-icon\"> <i class=\"fas fa-quote-right\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <div class=\"item\">\r\n            <div class=\"pq-testimonial-box pq-style-1\"> <span class=\"icon icon-quote\"></span>\r\n              <div class=\"pq-testimonial-info\">\r\n                <div class=\"pq-testimonial-content\">\r\n                  <p>Amazing experience! Its been a week and i feel like I never had any shoulder pain. I have been\r\n                    suffering with it since last year and it feels so good. I\'m glad I came to this clinic. Harman has\r\n                    been really knowledgeable and understanding . And the staff has been so kind all the time. I\'d\r\n                    recommend this to anyone anytime . Keep up the good work.</p>\r\n                </div>\r\n              </div>\r\n              <div class=\"pq-testimonial-media\">\r\n                <!--<div class=\"pq-testimonial-img\"> <img src=\"[asset path=\'images/testimonial/1.png\']\" class=\"img-fluid\" alt=\"testimonial-image\"> </div> -->\r\n                <div class=\"pq-testimonial-meta\">\r\n                  <h5>Aarnon K. Gohil</h5> <span>Patient </span>\r\n                </div>\r\n                <div class=\"pq-testimonial-icon\"> <i class=\"fas fa-quote-right\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <div class=\"item\">\r\n            <div class=\"pq-testimonial-box pq-style-1\"> <span class=\"icon icon-quote\"></span>\r\n              <div class=\"pq-testimonial-info\">\r\n                <div class=\"pq-testimonial-content\">\r\n                  <p>Alliston Physio treat everyone as individual. They\'re very professional and take proper time to\r\n                    know each patient personally in terms of their injury. They have many staffs ready to attend full\r\n                    capacity within their facility at all times. For each week that I\'ve been in Physio, I\'d feel quick\r\n                    results and the progress never stopped. They put me back on my feet rather quickly. I was surprised.\r\n                  </p>\r\n                </div>\r\n              </div>\r\n              <div class=\"pq-testimonial-media\">\r\n                <!--<div class=\"pq-testimonial-img\"> <img src=\"[asset path=\'images/testimonial/1.png\']\" class=\"img-fluid\" alt=\"testimonial-image\"> </div> -->\r\n                <div class=\"pq-testimonial-meta\">\r\n                  <h5>Robert Baty</h5> <span>Patient </span>\r\n                </div>\r\n                <div class=\"pq-testimonial-icon\"> <i class=\"fas fa-quote-right\"></i> </div>\r\n              </div>\r\n            </div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </div>\r\n  </div>\r\n</section>\r\n<!--Section testimonial End-->', 1, 1, '2025-03-17 09:18:39', '2025-04-03 12:55:10'),
(31, 6, 19, 10, 'Physiotherapy Assistant', 1, 1, '2025-03-17 11:17:09', '2025-03-20 15:48:39'),
(32, 1, 2, 2, '<section style=\"background:#2e343e;\">\r\n<div style=\"text-align:center; margin-top:5%;\">\r\n		<img src=\"[asset path=\'images/logo.png\']\" width=\"250\" style=\"width:20%\"><br><br>\r\n		 \r\n		<h1 style=\"color:#fff;\"><center>The page you’re looking for could not be found...</center></h1><br>\r\n		<a href=\"/\" class=\"pq-button pq-button-flat \">Back To Home</a>\r\n	</div>\r\n</section>', 1, 0, '2025-03-18 18:16:21', NULL),
(33, 1, 6, 5, '<section style=\"background:#2e343e;\">\r\n<div style=\"text-align:center; margin-top:5%;\">\r\n		<img src=\"[asset path=\'images/logo.png\']\" style=\"width:230px;\"><br><br>\r\n		 \r\n		<h4 style=\"color:#fff;\"><center>Thank You \r\nWe will contact you soon...</center></h4><br>\r\n		<a href=\"/\" class=\"pq-button pq-button-flat \">Back</a>\r\n	</div>\r\n</section>', 1, 1, '2025-03-18 18:16:54', '2025-03-21 13:29:34'),
(34, 7, 16, 17, '45', 1, 0, '2025-03-20 12:43:55', NULL),
(35, 8, 17, 17, '44', 1, 0, '2025-03-20 12:43:55', NULL),
(36, 9, 18, 17, 'A variety of compression and decompression methods are used in massage treatment ...', 1, 0, '2025-03-20 12:43:55', NULL),
(37, 1, 9, 17, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser9.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>A variety of compression and decompression methods are used in massage treatment to manipulate and mobilize soft tissues. Massage has a long history of use in medicine, and its therapeutic, palliative, and clinical applications have developed over the years. It is a therapeutic method that helps people unwind and recuperate. Medication may help some people deal with discomfort, but it isn\'t a panacea. Massage treatment in Alliston is one of the solutions that may assist alleviate discomfort.<br>\r\n<br>\r\nAs previously said, massage therapy has been used to assist individuals in managing and enhancing their quality of life, while also addressing various dysfunctions and impairments. When it comes to massage treatment, what are some of the more concrete benefits?\r\n \r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n<div class=\"row\">\r\n                         \r\n                        <div class=\"pq-accordion-block \">\r\n                           <div class=\"pq-accordion-box  1 pq-active\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      1. The Treatment of Pain\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"\">\r\n                                 <p class=\"pq-detail-text\"> No matter the severity or duration of your discomfort, massage therapy may help you manage it. It aids in pain relief by lowering inflammation, increasing blood flow, and calming the body. </p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   2\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     2. Minimizes Inflammation\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"> A normal reaction to harm or disease is inflammation, but long-term inflammation may cause problems. By boosting blood flow, decreasing stress, and stimulating the release of the body\'s natural anti-inflammatory chemicals, massage treatment may help decrease inflammation in the afflicted regions.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   3 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     3. Better Sleep\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\">People who have trouble sleeping may find relief from massage\'s effects on cortisol and serotonin, as indicated earlier.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   4 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      4. Relieve Tension and Encourage Calmness\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\">Anxieties and tension are typical pain triggers and intensifiers. The \"feel-good\" chemicals, including dopamine and serotonin, may be released with the use of massage treatment. Generally speaking, this has the potential to lessen discomfort while simultaneously heightening one\'s emotional and physical well-being.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box   5 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     5. Reduce Anxiety\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"> Reducing stress is one of the many benefits of getting a massage. The parasympathetic nervous system kicks in when we relax and unwind, while the fight-or-flight system kicks in when we\'re under stress. It is believed that massage might alleviate anxiety by increasing parasympathetic activity.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box   6 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                    6. Blood Circulation\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\">There are a lot of reasons why excellent circulation is vital. In particular, it plays a crucial role in transporting oxygen and nutrients to every part of our body. It aids in the elimination of waste items produced by the body as well. Difficulty moving blood through the body may lead to inflammation and discomfort. The increased blood flow and lymphatic drainage brought about by massage treatment may do wonders for circulation.\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n                        </div>\r\n                     </div>\r\n<p>\r\n			During a massage, the client\'s privacy is our first priority. We shall get the patient\'s verbal and written permission. The client will remain completely covered during the whole treatment, with the exception of the region that is undraped at any one moment. To get the most out of massage therapy, it\'s crucial that the client and therapist have an honest conversation about the client\'s requirements and goals. A typical massage session lasts anywhere from sixty to ninety minutes; this may be adjusted to suit your preferences. Maintaining open lines of communication and offering constructive criticism to your massage therapist is essential.\r\n			</p>', 1, 0, '2025-03-20 12:43:55', NULL),
(38, 7, 16, 18, '50', 1, 1, '2025-03-20 13:14:09', '2025-07-07 15:45:19'),
(39, 8, 17, 18, '46', 1, 1, '2025-03-20 13:14:09', '2025-07-07 15:45:19'),
(40, 9, 18, 18, 'Vestibular rehabilitation is a specific kind of physical therapy aimed at addressing issues related to the vestibular system...', 1, 1, '2025-03-20 13:14:09', '2025-07-07 15:45:19');
INSERT INTO `tasap_custom_field_group_type_values` (`cf_group_type_value_id`, `cf_group_type_id`, `cf_gt_class_template_id`, `data_id`, `field_value`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(41, 1, 9, 18, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser1.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Vestibular rehabilitation is a specific kind of physical therapy aimed at addressing issues related to the vestibular system, which governs balance, spatial orientation, and ocular movements. This treatment is often advised for persons experiencing dizziness, vertigo, imbalance, or other symptoms associated with vestibular diseases.\r\n<br>\r\n<br>\r\n\r\nAge-related alterations might affect the vestibular system and impair an individual\'s everyday functioning. As the population increases, vestibular rehabilitation services must be accessible to those in need.\r\n<br>\r\n<br>\r\n\r\nThe phrase dizziness encompasses a range of feelings, including light-headedness, swaying, and confusion. Vertigo is a frequently used phrase that refers to a particular kind of dizziness, characterized by the perception of movement in the surrounding environment.\r\n \r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 \r\n		 \r\n		 \r\n		\r\n\r\n		 <p> \r\n\r\n		 The vestibular system\'s function is to facilitate balance, spatial orientation, and stability during motion. The sensory system is situated in the inner ear, particularly inside the vestibular organs: the utricle, saccule, and three semicircular canals. The primary functions and objectives of the vestibular system encompass:\r\n \r\n<br>\r\n<br>\r\n		 </p>\r\n		 \r\n		 \r\n		 \r\n		 \r\n		 <div class=\"row\">\r\n                         \r\n                        <div class=\"pq-accordion-block \">\r\n                           <div class=\"pq-accordion-box  1 pq-active\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                       1. Balance\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"\">\r\n                                 <p class=\"pq-detail-text\"> The vestibular system is essential for sensing changes in head position and movement, facilitating our ability to remain upright and maintain equilibrium. This includes movements such as ambulation, standing, and altering bodily postures. </p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   2\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      2. Spatial Orientation\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"> The vestibular system aids human spatial orientation by relaying information on the head\'s position relative to gravity and the surrounding environment. This enables us to comprehend our body\'s spatial orientation and modify our motions appropriately.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   3 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      3. Ocular Movement Regulation\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\">The vestibular system is intricately linked to the ocular motor system, responsible for regulating eye movements. It facilitates the synchronization of ocular movements with cranial motions to preserve stable vision during activities such as ambulation or head rotation. </p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   4 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                       4. Postural Stability\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"> The vestibular system integrates information with inputs from other sensory systems, including vision and proprioception, to control posture and avert falls.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box   5 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      5. Kinetic Perception\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"> The vestibular system is responsive to linear acceleration (straight-line movement) and angular acceleration (rotational movement). This sensitivity enables us to detect and react to changes in motion, such as traveling in a vehicle or swiftly rotating our head.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n                        </div>\r\n                     </div>\r\n\r\n<h5 class=\"mt-4\">BPPV</h5>\r\n<p>The most frequent reason for vertigo resulting from a peripheral vestibular dysfunction is BPPV. It is more prevalent in older adults and affects 20–30% of all patients with a history of vertigo. More precisely, it is a biomechanical issue whereby one or more semicircular canals are activated improperly, causing nystagmus, vertigo, and recurrent nausea. The issue is caused by otoconia that have floated to one or more of the three semicircular canals after dislocating from the utricle.\r\n<br>\r\n<br>\r\n\r\n<strong>For more information on VRT, BPPV and related therapy or conditions, contact Alliston Physio Therapy today.</strong>\r\n</p>', 1, 1, '2025-03-20 13:14:09', '2025-07-07 15:46:51'),
(42, 7, 16, 19, '53', 1, 0, '2025-03-20 13:17:37', NULL),
(43, 8, 17, 19, '52', 1, 0, '2025-03-20 13:17:37', NULL),
(44, 9, 18, 19, 'A concussion is a brain injury induced by the brain\'s acceleration or deceleration inside the skull as a result ...', 1, 0, '2025-03-20 13:17:37', NULL),
(45, 1, 9, 19, '<div class=\"row align-items\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser15.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>A concussion is a brain injury induced by the brain\'s acceleration or deceleration inside the skull as a result of a substantial hit to the head or another part of the body. The impact produces a metabolic imbalance in the brain cells, resulting in reduced blood flow and short-term energy deficiencies. Symptoms may include loss of consciousness, headache, pressure in the head, neck discomfort, nausea or vomiting, dizziness, or balance issues, among others.\r\n<br>\r\n<br>\r\n\r\n<strong>Here are some important aspects of concussion management:</strong>\r\n\r\n\r\n </p>\r\n \r\n <h5>Concussion Testing</h5>\r\n<p>Concussion testing assesses your brain\'s processing and cognitive performance after a head injury. A baseline concussion test may be conducted prior to the start of a sports season for athletes who are at risk of head injuries.\r\n</p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n\r\n			\r\n			\r\n<h5>Balance and Vision Therapy</h5>\r\n<p>Following a concussion, partial vision loss, depth perception issues, double vision, and other symptoms might impair our ability to maintain balance, making the rehabilitation process more difficult. To keep our posture balanced, our visual system processes basic sensory input.  Vision therapy has been shown to help the visual system recover from difficulties that are often associated with post-concussion syndrome.\r\n</p>\r\n<h5>Exercise Rehab</h5>\r\n<p>Exercise may be quite effective in the healing from post-concussion syndrome. Elevating your heart rate while exercise boosts blood supply to your brain, hastening the healing process. Exercise-related motions also aid to generate good, normalizing nerve activity by synchronizing your arms, legs, neck, and head as you move.\r\n</p>\r\n<h5>Dietary Treatments</h5>\r\n<p>After a concussion, the levels of magnesium and zinc in the brain quickly decrease. These are two essential tools that the body uses to heal damage - magnesium and zinc. In order to assist you maximize your recovery process, our staff will collaborate with you to identify and address any areas of concern.\r\n</p>', 1, 0, '2025-03-20 13:17:37', NULL),
(46, 7, 16, 20, '49', 1, 0, '2025-03-20 13:23:58', NULL),
(47, 8, 17, 20, '51', 1, 0, '2025-03-20 13:23:58', NULL),
(48, 9, 18, 20, 'A number of factors may cause the temporomandibular joint (TMJ) to become irritated, inflamed, and painful.', 1, 0, '2025-03-20 13:23:58', NULL),
(49, 1, 9, 20, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser2.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>A number of factors may cause the temporomandibular joint (TMJ) to become irritated, inflamed, and painful. Overuse or inadequate patterning of the muscles that govern the jaw, sleeping posture, postural problems, grinding, jaw or dental surgery, or injury are all possible contributors. Fortunately, the great majority of people with TMJ issues react effectively to conservative treatment methods (such as physiotherapy). Physiotherapy is the most effective first-line treatment for TMJ discomfort or loss of movement.\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 \r\n		 \r\n		 <p>\r\n		 <br>\r\n \r\n\r\n		 TMJ dysfunction (abbreviated as \'TMD\') is a disorder that causes discomfort in the jaw joint(s) and/or surrounding muscles. This disorder may cause substantial loss of function, including discomfort or reduced motion during eating, opening, and yawning. This disorder may affect either one or both sides of the jaw. Other signs of TMD dysfunction include clicking or crunching in the jaw, occasional locking when opening or shutting the mouth, headaches (typically in the \'temples\' on the sides of the head), and neck discomfort and/or stiffness. Pain and stiffness symptoms are often more apparent in the morning and during or after meals.\r\n<br>\r\n<br>\r\n\r\nYou do not have to live with this condition. Surgery is not an option for the majority of individuals. Physiotherapy may successfully treat TMJ discomfort and dysfunction, as shown by a significant body of clinical research and the larger rehabilitation community.\r\n<br>\r\n<br>\r\n\r\nIn addition to hands-on treatment and exercise to improve jaw function, our TMJ physiotherapists in Alliston can assist their patients comprehend their problem. Educating patients on how to not only heal, but also how to care for their jaw muscles and joints to avoid future problems, is an essential component of good rehabilitation. A comprehensive approach to TMJ physiotherapy may successfully cure TMJ issues while lowering the likelihood of recurrence.\r\n</p>\r\n\r\n	\r\n	<div class=\"col-mb-12\">\r\n	<h5>TMJ Physio Treatments include:</h5>\r\n	<ul class=\"pq-portfolio-list-check\">\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Manual treatment aimed at restoring pain-free range of motion at the temporomandibular joint, alleviating pressure on the inflamed TMJ disc, and facilitating optimal joint gliding.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Manual soft tissue manipulation and stretching of constricted jaw and cervical muscles.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Training in jaw relaxation methods to facilitate the release of excessive tension in tight chewing muscles.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Utilize dry needling or acupuncture to target trigger points in the jaw muscles and alleviate discomfort.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Exercises to enhance strength and rectify muscular imbalances in the jaw, as well as to correct improper motor patterns during jaw opening and shutting motions.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Recommendations about sleeping posture, masticatory patterns, and dietary adjustments, including the temporary alteration of meal size or texture to alleviate jaw stress and facilitate healing.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Postural techniques to mitigate jaw discomfort resulting from ergonomic variables, including workplace configuration and forward head posture.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Treatment of the neck, back, and even the pelvis.  Joint constraints in these regions may negatively affect jaw positioning and movement patterns in some people.</li>\r\n\r\n</ul>\r\n\r\n</div>', 1, 0, '2025-03-20 13:23:58', NULL),
(50, 7, 16, 21, '57', 1, 0, '2025-03-20 13:32:24', NULL),
(51, 8, 17, 21, '54', 1, 0, '2025-03-20 13:32:24', NULL),
(52, 9, 18, 21, 'Shockwave therapy is a typical therapeutic method in physiotherapy sessions. It is a very evidence-based ...', 1, 0, '2025-03-20 13:32:24', NULL),
(53, 1, 9, 21, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser4.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Shockwave therapy is a typical therapeutic method in physiotherapy sessions. It is a very evidence-based therapeutic approach that addresses a broad variety of disorders, including tendon pain (tendinitis or tendinopathies) and other common ailments. These disorders may be found in a variety of demographics, including athletes and office workers. Shockwave treatment primarily relieves pain and restores function.<br>\r\n<br>\r\nShockwave therapy is a non-invasive treatment in which a portable device applies mechanical pressure to an affected region. We won\'t dive into the mechanics of shockwave therapy, but you can anticipate your therapist to hold a shockwave device on an affected area during the procedure. By transmitting high-energy soundwaves into the wounded region, the gadget stimulates an increase in blood flow, growth hormones, and new tissue growth. This will eventually assist to relieve discomfort, increase circulation, and promote healing of the injured tissue.\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n\r\n			\r\n			<p>\r\n			If you know someone who has undergone shockwave treatment, they have most certainly commented that it was not the most pleasant experience they have had. During treatment, a shockwave will be administered to the affected region (tendon, etc.), which may cause pain. This will depend on the ailment, the person, and the shockwave machine\'s settings. Typically, it should be at a level where you can feel the shockwave pulses, but it should be manageable enough to endure the whole session. There may be some soreness following the treatment, but it will disappear within 24 hours.\r\n<br>\r\n<br>\r\n\r\nThe number of shockwave sessions required depends on a number of parameters, including the kind of injury, its severity, the length of treatment (acute vs. chronic), the individual\'s age, and general health. Most people will need 3 to 6 shockwave treatments before their condition improves significantly. With that stated, some people may see significant reductions in their pain after the first few sessions, but for the full advantages of shockwave therapy, treatment should last around 12 weeks.\r\n<br>\r\n<br>\r\n\r\n<strong>For more information about shockwave therapy in Alliston, call Alliston Physiotherapy today.</strong>\r\n\r\n			\r\n			</p>', 1, 0, '2025-03-20 13:32:24', NULL),
(54, 7, 16, 22, '58', 1, 0, '2025-03-20 13:50:15', NULL),
(55, 8, 17, 22, '55', 1, 0, '2025-03-20 13:50:15', NULL),
(56, 9, 18, 22, 'A cutting-edge medical procedure, laser therapy employs a precisely focused beam of light to alleviate pain ...', 1, 0, '2025-03-20 13:50:15', NULL),
(57, 1, 9, 22, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser11.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>A cutting-edge medical procedure, laser therapy employs a precisely focused beam of light to alleviate pain and inflammation without invading the patient\'s tissues. Several fields of medicine have made use of this successful treatment, including veterinary medicine, dentistry, dermatology, and orthopedics. A number of medical issues may be alleviated by this remedy, including aches and pains in the joints, arthritis, fibromyalgia, back pain, neuropathy, burns, scars, wounds, and cancer. There are few adverse effects, and the procedure is painless, effective, and safe.\r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n			\r\n			<p>\r\n			With its safe and effective minimally invasive method, laser treatment is quickly becoming a popular choice for pain management, wound healing, and tumor eradication. For optimal outcomes, it is often administered in conjunction with other therapies such as medicine, physical therapy, or surgery. Laser treatment has already revolutionized contemporary medicine, and it\'s just going to become better with time and more study.\r\n<br>\r\n<br>\r\n\r\nThere are several possible advantages to laser treatment, and physiotherapy may help bring out those advantages to their fullest. Some of its advantages and the ways in which physiotherapy may assist are as follows:\r\n</p>\r\n<br>\r\n \r\n\r\n<h5>Pain Reliever</h5>\r\n<p>Reduces pain-inducing chemicals while increasing the body\'s natural painkillers.\r\nPeople suffering from acute or chronic pain as a result of injuries or other ailments may find it particularly useful. Physiotherapists may improve their efficacy in treating musculoskeletal disorders by using laser treatment with other approaches like exercise and manual therapy.\r\n</p>\r\n<h5>Decrease in Swelling</h5>\r\n<p>By improving blood flow and encouraging quicker healing, it helps lessen edema.\r\nChemical waste is more efficiently drained. Physiotherapists in Alliston may enhance patients\' health and wellness via the use of laser therapy as part of a holistic treatment strategy.</p>\r\n\r\n<h5>Rejuvenating Skin</h5>\r\n<p>It may improve one\'s look by removing acne, moles, and warts. As an integral aspect of a holistic treatment strategy, our physiotherapists in Alliston may include laser therapy to assist patients in reaching their aesthetic objectives.</p>', 1, 0, '2025-03-20 13:50:15', NULL),
(58, 7, 16, 23, '59', 1, 0, '2025-03-20 13:52:11', NULL),
(59, 8, 17, 23, '56', 1, 0, '2025-03-20 13:52:11', NULL),
(60, 9, 18, 23, 'A physiotherapist may alleviate discomfort and restore range of motion with manual therapy, which is also called mobilization ...', 1, 0, '2025-03-20 13:52:11', NULL),
(61, 1, 9, 23, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser10.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>A physiotherapist may alleviate discomfort and restore range of motion with manual therapy, which is also called mobilization or manipulative therapy. The therapist will gently manipulate the patient\'s tissues and joints. Studies show that this therapy is crucial for getting back on your feet after a variety of musculoskeletal problems and injuries.\r\n<br>\r\n<br>\r\n\r\nManual therapy aims to address the patient\'s condition from a neuro-orthopaedic perspective. Instead of masking symptoms, this therapy gets to the root of the problem. In manual therapy, a skilled practitioner examines and treats the patient\'s musculoskeletal system by use of specific, deliberate motions.\r\n\r\n \r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n			\r\n			\r\n			<p>\r\n			Manual therapy may alleviate pain in situations such as acute or chronic shoulder pain. Additionally, it deals with nerve mobilization, soft-tissue injuries, and fascial disorders. After receiving therapy, many patients describe a sense of relief from tight muscles and a generalized improvement in blood flow. The goal is to get the patient\'s range of motion back up to where it was before.\r\n<br>\r\n<br>\r\n\r\n<strong>For more information on Manipulation Therapy, contact Alliston Physiotherapy &amp; Sports Rehab today.</strong>\r\n\r\n			</p>', 1, 0, '2025-03-20 13:52:11', NULL),
(62, 7, 16, 24, '64', 1, 1, '2025-03-20 14:01:45', '2025-03-20 14:02:10'),
(63, 8, 17, 24, '60', 1, 1, '2025-03-20 14:01:45', '2025-03-20 14:02:10'),
(64, 9, 18, 24, 'Acupuncture is a traditional Chinese medicine practice that involves inserting very thin needles into specific points ...', 1, 1, '2025-03-20 14:01:45', '2025-04-03 13:16:10'),
(65, 1, 9, 24, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser16.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Acupuncture is a traditional Chinese medicine practice that involves inserting very thin needles into specific points on the body. It\'s been used for thousands of years and is believed to help balance the flow of energy  in the body.\r\n  </p>\r\n               </div>\r\n			   \r\n			   \r\n			   \r\n			   \r\n			   \r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n<div class=\"row\">\r\n                         \r\n                        <div class=\"pq-accordion-block \">\r\n                           <div class=\"pq-accordion-box  1 pq-active\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      1. Pain Relief\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"\">\r\n                                 <p class=\"pq-detail-text\"> <strong>Chronic Pain:</strong> One of the most well-known benefits of acupuncture is its ability to relieve chronic pain. Studies suggest that acupuncture can help alleviate conditions such as:</p>\r\n								 \r\n <ul>\r\n <li> Back pain</li>\r\n\r\n<li>Neck pain</li>\r\n\r\n<li>Osteoarthritis pain</li>\r\n\r\n<li>Joint pain (e.g., knee or hip arthritis)</li>\r\n\r\n<li>Headaches and migraines</li>\r\n\r\n<li>Fibromyalgia pain</li>\r\n\r\n<li>Shoulder pain</li>\r\n</ul>\r\n\r\n<p><strong>Mechanism:</strong> Acupuncture is thought to stimulate the body’s natural painkillers, such as endorphins, and improve blood circulation to the affected areas, which helps reduce pain and inflammation.</p>\r\n								 \r\n								 \r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   2\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     2. Immune Function\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong> Boosting Blood Flow:</strong> Acupuncture helps improve circulation by enhancing the movement of blood throughout the body, which aids in healing and overall health.\r\n<br>\r\n<br>\r\n\r\n<strong>Immune System Support:</strong> Regular acupuncture treatments can enhance the body’s immune function, potentially reducing the frequency of infections or illnesses. It’s often used to help patients recover more quickly from colds, flu, and other viral infections.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   3 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     3. Treatment for Migraines and Headaches\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Migraine Relief:</strong> Acupuncture is often used as a preventive measure for chronic migraines or tension headaches. It can help reduce the frequency and intensity of these headaches.\r\n<br>\r\n<br>\r\n\r\n<strong>Pain Relief:</strong> For those who experience acute migraines or tension headaches, acupuncture may help by releasing endorphins and regulating blood flow to the head, relieving pain and discomfort.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   4 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      4. Relieving Chronic Fatigue\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Energy Boost:</strong> For people with chronic fatigue syndrome or those who feel constantly drained, acupuncture can help restore energy levels and promote overall vitality by improving blood circulation and restoring balance to the body’s energy system.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   \r\n                        </div>\r\n                     </div>', 1, 1, '2025-03-20 14:02:10', '2025-04-03 13:19:05'),
(66, 7, 16, 25, '65', 1, 0, '2025-03-20 14:04:23', NULL),
(67, 8, 17, 25, '67', 1, 0, '2025-03-20 14:04:23', NULL),
(68, 9, 18, 25, 'Since we first opened our doors, Alliston Physiotherapy has been offering Sports Physiotherapy to patients...', 1, 0, '2025-03-20 14:04:23', NULL),
(69, 1, 9, 25, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser3.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Since we first opened our doors, Alliston Physiotherapy has been offering Sports Physiotherapy to patients of all different levels of athletic ability.  Beginning with weekend warriors and recreational athletes and progressing all the way up to high-level runners and competitive athletes. Sports rehabilitation focuses on the particular injuries that athletes sustain, as well as the requirements that are specific to their sport in terms of healing and injury prevention. \r\n<br>\r\n\r\n</p><h3>Common Injuries we Treat include:</h3>\r\n\r\n<h5>Ankle Sprain</h5>\r\nNinety percent of all ankle ailments are attributed to ankle sprains. A sprain transpires when ligaments are torn or excessively strained. Ligaments support joints, inhibiting excessive movement between bones.\r\n\r\n\r\n\r\n <p></p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			<h5>Rotator Cuff Injury</h5>\r\n<p>Rotator cuff injuries may vary in severity from minor to severe. Tendonitis is an ailment resulting from the over usage of the rotator cuff, leading to inflammation.</p>\r\n<br>\r\n<br>\r\n\r\n<h5>Lateral Epicondylitis (Tennis Elbow)</h5>\r\n<p>This is an overuse injury resulting in discomfort and inflammation of the tendons connected to the lateral epicondyle of the elbow.</p>\r\n<br>\r\n<br>\r\n<h5>Medial Epicondylitis (Golfer\'s Elbow)</h5>\r\n<p>This disorder induces discomfort at the site where the tendons of the forearm muscles connect to the bone on the medial aspect of the elbow.</p>\r\n<br>\r\n<br>\r\n<h5>Hamstring and Groin Strains</h5>\r\n<p>Hamstring and groin injuries often occur in several sports, including hockey, soccer, and baseball.</p>\r\n<br>\r\n<br>\r\n<h5>Patellar Tendon Disorders</h5>\r\n<p>Jumper\'s knee, or patellar tendonitis, is an overuse ailment resulting in anterior knee discomfort.</p>\r\n<br>\r\n<br>\r\n<h5>Patellofemoral Pain Syndrome or Chondromalacia Patellae </h5>\r\n<p>Patellar pain is situated in the anterior aspect of the knee or posterior to the patella. It typically happens in those who regularly engage in sports, particularly in teenage females.</p>\r\n<br>\r\n<br>\r\n<h5>Concussions</h5>\r\n<p>A concussion is a severe brain injury often resulting from a blow to the head. They are often seen in contact sports.</p>', 1, 0, '2025-03-20 14:04:23', NULL),
(70, 7, 16, 26, '68', 1, 0, '2025-03-20 15:25:56', NULL),
(71, 8, 17, 26, '62', 1, 0, '2025-03-20 15:25:56', NULL),
(72, 9, 18, 26, 'Our therapists are well-versed in the treatment of a broad variety of orthopedic injuries sustained in vehicle accidents...', 1, 0, '2025-03-20 15:25:56', NULL),
(73, 1, 9, 26, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser8.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Our therapists are well-versed in the treatment of a broad variety of orthopedic injuries sustained in vehicle accidents, including but not limited to: back strains and whiplash, as well as more uncommon ailments affecting the muscles, ligaments, tendons, spine, and bones.  For patients with more serious nerve damage or brain injuries, our clinic provides specialist neurologic therapy in addition to orthopedic rehabilitation. If it is necessary, we may also bring our automobile accident rehabilitation services to your house.<br>\r\n<br>\r\nRehabilitating after a car accident is straightforward at Alliston Physiotherapy. On your behalf, we will fill up and submit all insurance paperwork, and we will charge your insurance carrier directly. We strive to ensure that your recovery after an automobile accident is quick, easy, and comprehensive.\r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n			\r\n			<p>\r\n			\r\n			<strong>Common forms of motor vehicle accident injuries that we treat include:</strong>\r\n</p><ul class=\"pq-portfolio-list-check\">\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	<strong>Whiplash:</strong> We have a limited range of motion in our necks, and when an event forces it out of alignment, the result may be a painful condition known as whiplash. To restore your body to its pre-incident state, we provide a full range of treatments as part of our whiplash therapy.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	<strong>Seat Belt Injury:</strong> Although seat belts are designed to keep us safe in the case of an accident, the force of the impact may cause injuries such as bruises and other physical harm. With our help, you may recover from seat belt injuries and even get them back to normal.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	<strong>Motorcycle Injuries:</strong> Injuries sustained in motorcycle accidents may vary in severity, from light to moderate to severe. Our comprehensive approach to treating motorbike injuries will include a range of therapy techniques to help you regain full range of motion, regardless of the severity of your injuries.</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	<strong>Concussions:</strong> Concussions are among the most hazardous injuries that may occur as a result of car accidents. These injuries can impair one\'s ability to see, move around, and remember things. In addition, they have the potential to cause excruciating headaches. Individualized therapies for concussions and mild traumatic brain injuries are developed by us to ensure a speedy recovery.</li>\r\n\r\n</ul>', 1, 0, '2025-03-20 15:25:56', NULL),
(74, 7, 16, 27, '69', 1, 0, '2025-03-20 15:27:43', NULL),
(75, 8, 17, 27, '70', 1, 0, '2025-03-20 15:27:43', NULL),
(76, 9, 18, 27, 'We understand that surgery is a big deal, and that you want to be ready for...', 1, 0, '2025-03-20 15:27:43', NULL),
(77, 1, 9, 27, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser5.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>We understand that surgery is a big deal, and that you want to be ready for it and make sure you have a plan for when you recuperate. No matter whether you\'re an athlete trying to get back on the field or just someone trying to go back to the things you love doing, physiotherapy is an important part of your road to recovery after surgery.\r\n<br>\r\n<br>\r\n\r\nEven while surgery is the major attraction, the success or failure of your procedure will depend on how well our therapists work with your surgical team. Whether you need assistance getting ready for surgery or recovering from it, Alliston Physiotherapy and Sports Rehab is here to help. Our team of physiotherapists in Alliston is committed to providing you with individualized care before, during, and after surgery to ensure a smooth and successful recovery.\r\n\r\n \r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>	\r\n			\r\n			<p>\r\n			Physiotherapy prepares patients for surgery. Pre-surgical physiotherapy assesses, exercises, and treats patients to improve their physical and mental health. See below for some pre-surgery physiotherapy benefits:\r\n<br>\r\n<br>\r\n\r\n<strong>Improved Surgical results:</strong> Pre-surgery physiotherapy may enhance your physical condition, minimizing surgery risks and improving surgical results.\r\n<br>\r\n<br>\r\n<strong>Improved Physical Fitness:</strong> Physiotherapy may strengthen muscles, enhance flexibility, and boost cardiovascular fitness, making surgery and recuperation easier.\r\n<br>\r\n<br>\r\n<strong>Faster Recovery:</strong> Pre-surgery physiotherapy builds endurance and strength, which speeds recovery.\r\n<br>\r\n<br>\r\n<strong>Pain Management:</strong> Physiotherapy exercises and methods may help you control pain throughout recovery.\r\n<br>\r\n<br>\r\n<strong>Mobility:</strong> Improving your range of motion before surgery may improve recovery and long-term outcomes.\r\nPost-surgical physiotherapy is essential for recovery. The goal of this specialist therapy is to optimize healing, restore physical function, and improve quality of life after surgery. Post-surgery physiotherapy advantages include:\r\n<br>\r\n<br>\r\n<strong>Faster Recovery:</strong> Post-surgery physiotherapy speeds recovery and restores functional independence.\r\n<br>\r\n<br>\r\n<strong>Pain Management:</strong> Our physiotherapists employ manual therapy, modalities, and exercises to treat post-operative pain.\r\n<br>\r\n<br>\r\n<strong>Improved Scar Healing:</strong> Physiotherapy helps reduce scar tissue and improve surgical scars.\r\n<br>\r\n<br>\r\n<strong>Restoration of Mobility:</strong> Post-surgery physiotherapy helps the damaged region restore range of motion and mobility for everyday activities.\r\n<br>\r\n<br>\r\n<strong>Muscle Strength:</strong> Our therapists develop and strengthen surgery-weakened muscles to help patients recover to normal function.\r\n\r\n			\r\n			</p>', 1, 0, '2025-03-20 15:27:43', NULL),
(78, 7, 16, 28, '73', 1, 0, '2025-03-20 15:29:46', NULL),
(79, 8, 17, 28, '71', 1, 0, '2025-03-20 15:29:46', NULL),
(80, 9, 18, 28, 'GLA:D Canada is an evidence-based program that treats and manages hip and/or knee osteoarthritic symptoms...', 1, 0, '2025-03-20 15:29:46', NULL),
(81, 1, 9, 28, '<div class=\"row align-items\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser14.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>GLA:D Canada is an evidence-based program that treats and manages hip and/or knee osteoarthritic symptoms, aids in the management and development of osteoarthritis, improves patient outcomes (increases function, decreases pain), and reduces the need for total joint replacements and opiate usage. Osteoarthritis is the most prevalent cause of mobility issues and impairment among the elderly. It is also prevalent in young and middle-aged adults. Approximately 5% of persons aged 35 to 54 have osteoarthritis. Many of these folks have previously had joint injuries. Approximately 30% of the population between the ages of 50 and 70 suffer from osteoarthritis, with the number increasing with age.<br>\r\n<br>\r\nEvidence shows that individuals with hip and/or knee osteoarthritis who are presently awaiting surgery, as well as those who have just been diagnosed, may benefit from the GLA:D program\'s education and exercise treatment.  Patients in the GLA:D program in Alliston may decide that surgery is no longer necessary, or they may be better able to manage their symptoms while waiting for surgery. This approach has the potential to shorten surgical wait times and enhance overall outcomes, both before and after surgery.\r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>', 1, 0, '2025-03-20 15:29:46', NULL),
(82, 7, 16, 29, '74', 1, 0, '2025-03-20 15:31:43', NULL),
(83, 8, 17, 29, '61', 1, 0, '2025-03-20 15:31:43', NULL),
(84, 9, 18, 29, 'Polar Care Cube Cold Therapy System is a straightforward and dependable piece of equipment. It is an excellent choice ...', 1, 0, '2025-03-20 15:31:43', NULL),
(85, 1, 9, 29, '<div class=\"row align-items\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser6.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Polar Care Cube Cold Therapy System is a straightforward and dependable piece of equipment. It is an excellent choice for usage in clinics, hospitals, and even at home due to its user-friendly and small design. Your patients will experience easy cold therapy for a period of six to eight hours if you include ice and water in the treatment. In order for the pad to be used correctly, there must be an insulating barrier between it and the patient\'s skin. \r\n\r\n\r\n </p>\r\n \r\n <strong>Polar Care Cube Cold Therapy is often used for the following applications:</strong>\r\n\r\n<ul class=\"pq-portfolio-list-check\">\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Arthroscopic Procedures </li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Post-Op</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Post Trauma</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	Reconstructive Surgery</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>	General Surgery</li>\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Chronic Pain</li>\r\n</ul>\r\n\r\n<strong>For more information on Polar Care Cube Therapy, contact Alliston Physiotherapy today.</strong>\r\n\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>', 1, 0, '2025-03-20 15:31:43', NULL),
(86, 7, 16, 30, '72', 1, 0, '2025-03-20 15:33:18', NULL),
(87, 8, 17, 30, '63', 1, 0, '2025-03-20 15:33:18', NULL),
(88, 9, 18, 30, 'The Alliston Physiotherapy and Sports Rehabilitation clinic provides individuals who need therapeutic treatments ...', 1, 0, '2025-03-20 15:33:18', NULL),
(89, 1, 9, 30, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser12.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>The Alliston Physiotherapy and Sports Rehabilitation clinic provides individuals who need therapeutic treatments with the option of receiving home visits. A more individualized and pleasant healing experience may be achieved via the use of this service, which offers the patient the convenience of obtaining medical attention in their own environment. When it comes to patients who have mobility concerns or other obstacles that may make it difficult for them to get to a clinic, the option to deliver physiotherapy treatments directly to the patient\'s home may be very advantageous. Taking this approach is consistent with a concept of healthcare that is accessible and focuses on the patient.\r\n \r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>', 1, 0, '2025-03-20 15:33:18', NULL),
(90, 7, 16, 31, '75', 1, 0, '2025-03-20 15:34:57', NULL),
(91, 8, 17, 31, '43', 1, 0, '2025-03-20 15:34:57', NULL),
(92, 9, 18, 31, 'Due of the challenges associated with going somewhere, a period of home care is frequently required after a terrible ...', 1, 0, '2025-03-20 15:34:57', NULL),
(93, 1, 9, 31, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser13.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <p>Due of the challenges associated with going somewhere, a period of home care is frequently required after a terrible or catastrophic event. Why go on a journey when you\'re in such bad shape and may hurt yourself worse? When you choose Alliston Physiotherapy, we\'ll come to your house to begin treatment and then transfer you to our facility when you\'re ready.\r\n<br>\r\n<br>\r\n\r\nOur Registered Physiotherapists have treated a wide variety of injuries over the years. Additionally, they may assist with the coordination of any evaluations or papers required by insurance companies. The physiotherapy treatments offered by Alliston Physiotherapy are proudly provided to patients in the comfort of their own homes. Registered physiotherapists on staff have the training and expertise to treat a wide range of injuries and conditions, as well as to assist with insurance paperwork and evaluations.\r\n\r\n\r\n\r\n\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n			\r\n			<p>\r\n			<br>\r\n\r\n			<strong>Common modifications made after home assessments include:</strong>\r\n\r\n</p><h5>Widening doorways and hallways:</h5>\r\n<p> Recommended for those who use mobility equipment such as wheelchairs or scooters, with a focus on bathroom door widths.</p>\r\n\r\n<h5>Elimination of outdoor steps:</h5>\r\n<p> Suggested replacement with a gently sloping pathway to increase accessibility.</p>\r\n\r\n<h5>Kitchen modifications:</h5>\r\n<p> Encouragement to keep frequently used goods at hip or shoulder height. • Consideration of a seated work area, an adjustable sink, and useful equipment such as dustpans and brooms with long handles.</p>\r\n\r\n<h5>Bedroom Modifications:</h5>\r\n<p> The need of having enough space around the bed for those who use wheelchairs or scooters. • Bed height and the usage of bed rails for support.</p>\r\n\r\n<strong>For more information on home assessments, reach out to Alliston Physiotherapy today.</strong>', 1, 0, '2025-03-20 15:34:57', NULL),
(94, 7, 16, 32, '76', 1, 1, '2025-03-20 15:36:30', '2025-04-03 13:41:10');
INSERT INTO `tasap_custom_field_group_type_values` (`cf_group_type_value_id`, `cf_group_type_id`, `cf_gt_class_template_id`, `data_id`, `field_value`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(95, 8, 17, 32, '66', 1, 1, '2025-03-20 15:36:30', '2025-04-03 13:41:10'),
(96, 9, 18, 32, 'We do Custom Orthotics and Braces at Alliston Physiotherapy and Sports Rehabilitation...', 1, 1, '2025-03-20 15:36:30', '2025-04-03 13:41:10'),
(97, 1, 9, 32, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser17.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n			   <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser18.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                  <h5>What are Custom Orthotics and Braces?</h5>\r\n<p>We do Custom Orthotics and Braces at Alliston Physiotherapy and Sports Rehabilitation and they are specially designed to help support, align, or correct the function of a part of the body, typically the feet, ankles, knees, or back.\r\n<br>\r\n<br>\r\n\r\n<strong>Custom Orthotics</strong> are inserts or insoles designed to fit inside shoes. These are custom-made to an individual’s unique foot structure and biomechanics. They are often used to correct issues like poor arch support, imbalances in foot positioning, or conditions like plantar fasciitis, flat feet, or bunions.\r\n<br>\r\n<br>\r\n\r\n<strong>Custom Braces </strong>are wearable braces that provide support, immobilize, or protect a joint or body part. For example, knee braces, ankle braces, or back braces. They are tailored to fit a patient\'s body and specific needs to address pain, instability, or injury recovery.</p>\r\n \r\n\r\n \r\n               </div>\r\n			   \r\n			    \r\n                \r\n            </div>\r\n         </div>\r\n<div class=\"row\">\r\n		 \r\n	<div class=\"col-md-12\">	 \r\n	<br>\r\n\r\n\r\n<h5>How They Help Patients</h5>\r\nBoth orthotics and braces play a critical role in improving mobility, relieving pain, and preventing further injury by addressing underlying structural issues or injuries. Here’s how they help:\r\n</div>\r\n<br>\r\n<br>\r\n\r\n                         \r\n                        <div class=\"pq-accordion-block \">\r\n                           <div class=\"pq-accordion-box  1 pq-active\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      1. Pain Relief\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"\">\r\n                                 <p class=\"pq-detail-text\"> <strong>Orthotics</strong>: By supporting the feet and correcting alignment issues, custom orthotics can alleviate pain in the feet, legs, hips, and lower back. For example, they can reduce pain from conditions like plantar fasciitis, bunions, or heel spurs by redistributing pressure and improving posture.\r\n<br>\r\n<br>\r\n\r\n<strong>Braces</strong>: Custom braces stabilize injured or weak joints (e.g., knee or ankle) and help reduce pain by preventing excessive movement, which can aggravate the condition. For instance, knee braces can be helpful for arthritis or post-surgery recovery.\r\n</p>\r\n								 \r\n								 \r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   2\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     2. Improving Function and Mobility\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Orthotics</strong>: Custom orthotics improve how the foot functions by correcting abnormal motion and supporting the arch, helping patients walk more comfortably and efficiently. For people with flat feet or high arches, custom orthotics can help redistribute weight more evenly, enhancing mobility.\r\n<br>\r\n<br>\r\n\r\n<strong>Braces</strong>: Braces help immobilize a joint or area of the body, which can prevent unwanted movements, promote healing, and allow patients to engage in daily activities more comfortably. This is especially important for recovering from injuries or surgeries.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   3 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     3. Preventing Further Injury\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Orthotics</strong>: They can help prevent future injuries by correcting posture and distributing pressure evenly across the foot. This is particularly important for athletes or people who have repetitive stress injuries.\r\n<br>\r\n<br>\r\n\r\n<strong>Braces</strong>: Custom braces provide additional stability and protection during physical activities, preventing further strain on already weakened or injured areas. For example, a custom knee brace might help prevent reinjury in athletes recovering from an ACL tear.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   4 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      4. Enhanced Comfort\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Orthotics</strong>: Since they are custom-made to fit an individual’s unique foot shape and needs, they provide superior comfort compared to over-the-counter insoles. This personalized fit helps avoid pressure points, blisters, or irritation that generic insoles might cause.\r\n<br>\r\n<br>\r\n\r\n<strong>Braces</strong>: Custom braces are made to conform to the body and provide a snug fit. This reduces discomfort compared to one-size-fits-all models, which can sometimes cause rubbing or poor support.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box   5 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      5. Improving Posture and Alignment\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Orthotics</strong>: Custom orthotics can help align the feet properly, which can, in turn, improve the alignment of the knees, hips, and spine. This can be especially beneficial for individuals with scoliosis, poor posture, or knee pain caused by misalignment.\r\n<br>\r\n<br>\r\n\r\n<strong>Braces</strong>: In cases where an injury or condition has caused misalignment (such as scoliosis or knee instability), custom braces help realign and maintain proper joint function, reducing the risk of developing compensatory problems in other parts of the body.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box  6 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      6. Supporting Recovery\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Orthotics</strong>: For people with chronic foot conditions or injuries, wearing custom orthotics during recovery helps to minimize discomfort, allowing them to get back to normal activities sooner. They also support the healing process by reducing strain on the affected areas.\r\n<br>\r\n<br>\r\n\r\n<strong>Braces</strong>: Braces are commonly used in rehabilitation after an injury or surgery to support the injured area while healing. They allow the body to heal naturally while minimizing the risk of complications from movement or instability.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   <br>\r\n<br>\r\n\r\n\r\n\r\n<h5>Conditions That Benefit from Custom Orthotics and Braces</h5>\r\nHere are some common conditions that benefit from custom orthotics and braces:<br>\r\n<br>\r\n\r\n\r\n<h6>Custom Orthotics</h6>\r\n<ul>\r\n<li><strong>Plantar Fasciitis</strong>: Orthotics can relieve pressure on the heel, reducing inflammation and pain.</li>\r\n\r\n<li><strong>Flat Feet (Pes Planus)</strong>: Orthotics provide arch support and reduce strain on the legs and lower back.</li>\r\n\r\n<li><strong>Bunions</strong>: They help realign the toe and reduce discomfort caused by pressure.</li>\r\n\r\n<li><strong>Heel Spurs</strong>: Orthotics can cushion and relieve pressure on the heel, promoting healing.</li>\r\n\r\n<li><strong>Arthritis</strong>: Custom orthotics help reduce pain by redistributing pressure away from affected joints.</li>\r\n</ul>\r\n\r\n<h6>Custom Braces</h6>\r\n<ul>\r\n<li><strong>Knee Injuries (ACL Tears, Meniscus Tears, Patellar Tendonitis)</strong>: Braces provide stability, control movement, and protect the joint during healing.</li>\r\n\r\n<li><strong>Osteoarthritis of the Knee</strong>: A knee brace can reduce pain and prevent the knee from collapsing inward, offering relief for patients with joint degeneration.</li>\r\n\r\n<li><strong>Ankle Sprains/Instability</strong>: Braces help stabilize the ankle and prevent further twisting or turning, aiding recovery.</li>\r\n\r\n<li><strong>Back Pain/Spinal Support</strong>: Back braces can relieve pressure on the spine and provide support during activities, promoting healing from strains or injuries.</li>\r\n</ul>\r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n                        </div>\r\n                     </div>', 1, 1, '2025-03-20 15:36:30', '2025-04-03 13:41:10'),
(98, 7, 16, 33, '77', 1, 1, '2025-03-20 15:37:27', '2025-04-03 13:42:50'),
(99, 8, 17, 33, '43', 1, 1, '2025-03-20 15:37:27', '2025-04-03 13:42:50'),
(100, 9, 18, 33, 'Personal training can be incredibly beneficial for patients, especially when it comes to recovery,...', 1, 1, '2025-03-20 15:37:27', '2025-04-03 13:42:50'),
(101, 1, 9, 33, '<div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"[asset path=\'images/service/ser19.jpg\']\" class=\"team-img\" alt=\"\"> </div>\r\n			   \r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                   \r\n                   \r\n<p>Personal training can be incredibly beneficial for patients, especially when it comes to recovery, rehabilitation, and overall well-being. While personal trainers are typically associated with fitness goals, their role in helping patients—especially those with specific health conditions or injuries—can be just as impactful. Here’s how personal training helps patients:</p>\r\n \r\n\r\n \r\n               </div>\r\n			   \r\n			    \r\n                \r\n            </div>\r\n         </div>\r\n<div class=\"row\">\r\n		 \r\n	<div class=\"col-md-12\">	 \r\n \r\n\r\n \r\n\r\n                         \r\n                        <div class=\"pq-accordion-block \">\r\n                           <div class=\"pq-accordion-box  1 pq-active\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      1. Injury Recovery and Rehabilitation\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"\">\r\n                                 <p class=\"pq-detail-text\"> \r\n								  <strong>Tailored Exercise Programs:</strong> A personal trainer can create a program specifically designed to help patients recover from injuries, such as sprains, fractures, or surgery. These exercises are often aimed at rebuilding strength, improving flexibility, and restoring range of motion.\r\n								  <br>\r\n<br>\r\n<strong>Post-Surgery Rehab</strong>: After surgery, a personal trainer can guide patients through movements that promote healing and prevent re-injury. The trainer will focus on regaining mobility and strength in the affected area in a safe, controlled manner.<br>\r\n<br>\r\n<strong>Progressive Overload</strong>: The trainer will ensure that exercises increase in difficulty in a gradual and safe way, promoting continuous progress without pushing the patient too hard, which can lead to setbacks. \r\n</p>\r\n								 \r\n								 \r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   2\">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     2. Pain Management\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Chronic Pain Relief</strong>: For patients with chronic conditions like arthritis, fibromyalgia, or lower back pain, personal trainers can introduce specific exercises to improve posture, strengthen muscles around painful joints, and reduce tension. Regular exercise has been shown to reduce pain perception by releasing endorphins, improving blood circulation, and reducing inflammation.\r\n<br>\r\n<br>\r\n\r\n<strong>Functional Movements</strong>: Personal trainers help patients perform functional movements that support day-to-day activities like walking, lifting objects, or sitting. This can reduce strain and prevent unnecessary pain.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   3 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     3. Preventing Further Injury\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Strengthening Weak Areas</strong>: Personal trainers work with patients to identify weak or imbalanced muscles that may contribute to poor posture, joint instability, or risk of injury. For example, strengthening core muscles can prevent lower back pain, and strengthening leg muscles can prevent knee injuries.\r\n<br>\r\n<br>\r\n\r\n<strong>Improved Flexibility and Mobility</strong>: Tight muscles or poor flexibility often lead to injuries. Personal trainers can help patients improve flexibility, which helps reduce the risk of sprains, strains, and overuse injuries.\r\n<br>\r\n<br>\r\n\r\n<strong>Postural Correction</strong>: A trainer can help correct poor posture, which often contributes to muscle imbalances, back pain, and other conditions. By focusing on exercises that improve posture, trainers can reduce the risk of chronic pain and injury.</p>\r\n                              </div>\r\n                           </div>\r\n                           <div class=\"pq-accordion-box   4 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      4. Building Strength and Endurance\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Muscle Rehabilitation</strong>: After injury or surgery, it’s essential to rebuild muscle strength to regain functionality and reduce the risk of future injuries. A personal trainer will guide patients through strength-building exercises that help rebuild muscle in a controlled, gradual way.\r\n<br>\r\n<br>\r\n\r\n<strong>Endurance Training</strong>: Personal trainers can help patients improve cardiovascular endurance (important for patients with heart conditions or after major surgery) through tailored aerobic exercises. This will help patients feel more energetic, reduce fatigue, and recover more quickly.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box   5 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      5. Boosting Mental Health\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Stress Reduction</strong>: Regular physical activity can significantly reduce stress, anxiety, and depression. For patients who are dealing with the emotional toll of chronic illness or injury, exercise can help release tension, improve mood, and boost overall mental health. Trainers often incorporate mindfulness into their sessions to improve mental well-being.\r\n<br>\r\n<br>\r\n\r\n<strong>Increased Confidence</strong>: As patients progress in their fitness journey—whether it\'s recovering from an injury or simply improving their physical health—they often experience a boost in self-confidence. A personal trainer’s support and encouragement can make a big difference in a patient’s overall outlook on their health and recovery.\r\n<br>\r\n<br>\r\n\r\n<strong>Motivation</strong>: Staying consistent with a fitness routine can be difficult for many patients, especially when they are dealing with physical limitations. A personal trainer provides accountability, structure, and positive reinforcement, which keeps patients motivated and focused on their recovery or fitness goals.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box  6 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      6. Managing Chronic Conditions\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Weight Management</strong>: Personal trainers can help patients with conditions like diabetes, obesity, or high blood pressure by creating customized weight loss or weight management programs. Exercise plays a key role in managing these conditions by improving insulin sensitivity, lowering blood pressure, and promoting fat loss.\r\n<br>\r\n<br>\r\n\r\n<strong>Heart Health</strong>: For patients with cardiovascular conditions (e.g., heart disease), personal trainers can design safe, heart-healthy exercise programs. These programs help improve circulation, increase aerobic capacity, and support overall heart health.\r\n<br>\r\n<br>\r\n\r\n<strong>Diabetes Control</strong>: Exercise helps with blood sugar control. A personal trainer can guide diabetic patients in performing exercises that improve insulin sensitivity and help manage blood sugar levels, which is crucial for long-term health.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   <div class=\"pq-accordion-box  7 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      7. Improving Mobility and Balance\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Balance and Coordination</strong>: Personal trainers can incorporate balance and coordination exercises into a patient’s routine. This is especially important for elderly patients or individuals recovering from surgery or illness, as it helps prevent falls and improves overall stability.\r\n<br>\r\n<br>\r\n\r\n<strong>Mobility Training</strong>: Many patients experience limited mobility after an injury, surgery, or due to chronic conditions. Trainers can work with them to increase their flexibility and range of motion, improving their ability to move freely and comfortably.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   <div class=\"pq-accordion-box  8 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                      8. Support for Specific Health Goals\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Sports Rehabilitation</strong>: If a patient has an injury related to a specific sport (e.g., a runner with a knee injury), a personal trainer can work with the patient to ensure they recover fully and safely return to their sport. This involves sport-specific exercises, recovery strategies, and injury prevention techniques.\r\n<br>\r\n<br>\r\n\r\n<strong>Aging Adults</strong>: For elderly patients, personal training can focus on maintaining strength, flexibility, and balance to prevent falls and help them remain independent. This might involve light strength training, balance exercises, and low-impact cardio.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   <div class=\"pq-accordion-box  9 \">\r\n                              <div class=\"pq-ad-title\">\r\n                                 <h6 class=\"ad-title-text\">\r\n                                     9. Customized Approach for Each Patient\r\n                                       <i aria-hidden=\"true\" class=\"ion ion-ios-arrow-down active\"></i><i aria-hidden=\"true\" class=\"ion ion-ios-arrow-up inactive\"></i>\r\n                                    </h6> </div>\r\n                              <div class=\"pq-accordion-details\" style=\"display: none;\">\r\n                                 <p class=\"pq-detail-text\"><strong>Personalized Plans</strong>: Every patient has unique needs, goals, and limitations. Personal trainers take a personalized approach to create a fitness or rehabilitation plan that fits each individual. This ensures that the exercises are safe, effective, and aligned with the patient’s specific needs (e.g., recovering from an injury, managing a condition, or improving general fitness).\r\n<br>\r\n<br>\r\n\r\n<strong>Monitoring Progress</strong>: Personal trainers track patients’ progress regularly and adjust their training programs based on improvements or any setbacks. This ensures that the patient is constantly progressing and staying motivated.\r\n\r\n</p>\r\n                              </div>\r\n                           </div>\r\n						   \r\n						   \r\n						   \r\n						   <br>\r\n<br>\r\n \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n						   \r\n                        </div>\r\n                     </div>\r\n\r\n			\r\n			\r\n			\r\n			\r\n         </div>', 1, 1, '2025-03-20 15:37:27', '2025-04-03 13:42:50'),
(102, 1, 7, 8, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404952-2.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Harmandeep Dhillon   <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Registered Physiotherapist</span>\r\n                  <p>Harmandeep Singh Dhillon, our dedicated Registered Physiotherapist with an unwavering passion for excellence and a wealth of experience, Harmandeep is committed to providing personalized care that surpasses expectations.\r\n<br>\r\n<br>\r\n\r\nHarmandeep commenced his professional journey after graduating with distinction from the esteemed Physical Therapy program at Punjabi University Patiala, Punjab, India, in 2010. Elevating his commitment to excellence, he earned a Master\'s Degree in Sports Physical Therapy from the same institution in 2013. Armed with years of hands-on experience as an Musculoskeletal physical therapist and sports physiotherapist in both private and public sectors, he has finely tuned his skills to address a diverse range, specializing in musculoskeletal issues, pre and post-surgical rehabilitation, and sports injuries.\r\n<br>\r\n<br>\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\nHarmandeep brings a unique perspective to our team, having been involved in competing at an elite/professional level in sports like tennis and soccer. His special interest in biomechanics, muscle balance, joint stability, and functional movement retraining contributes to his evidence-based approach to treatment sessions. Harmandeep employs biomechanical solutions along with manual therapy, modalities, and exercise, working closely with his patients to provide a patient-centered approach that speeds up recovery and helps prevent future episodes of similar nature.\r\n<br>\r\n<br>\r\n\r\nAs an active member of the College of Physiotherapy of Ontario, Harmandeep upholds the highest standards of professional practice. His dedication to continuous learning ensures he stays at the forefront of the latest developments in physiotherapy.\r\n<br>\r\n<br>\r\n\r\nHarmandeep\'s expertise extends to sports physical therapy, boasting a remarkable history of collaborations with various sports teams. His pursuit of excellence is further demonstrated by numerous certifications, including being a\r\n\r\n\r\n </p>\r\n \r\n <div class=\"row\">\r\n \r\n <div class=\"col-md-6\">\r\n \r\n<ul class=\"pq-portfolio-list-check\">\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Certified Mulligan Practitioner</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Acupuncture</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Proficiency in Concussion management</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Vestibular rehabilitation</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> TMJ therapy</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>Spinal manipulations</li>\r\n\r\n \r\n \r\n </ul>\r\n </div>\r\n \r\n <div class=\"col-md-6\">\r\n \r\n<ul class=\"pq-portfolio-list-check\">\r\n \r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Sports Injuries</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>GLA: D (Good Life with Osteoarthritis-Denmark)</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Cupping Therapy</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>IASTM (Instrument Assisted Soft Tissue Mobilization)</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> Kinesio- taping</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i>   Yoga</li>\r\n \r\n </ul>\r\n </div>\r\n \r\n </div>\r\n \r\n \r\n <p>\r\n \r\n In the clinic, Harmandeep is renowned for his patient-centered approach. He believes in empowering his patients through education and leveraging his manual therapy skills to restore them to full function. Beyond his professional dedication, Harmandeep finds joy in exploring new places, embracing different cultures, staying active through exercise, and indulging in the pleasures of reading.\r\n<br>\r\n<br>\r\n\r\nEmbark on your path to recovery and well-being with Harmandeep at Alliston Physiotherapy and Sports Rehabilitation. Trust in his expertise, unwavering commitment to excellence, and personalized care to guide you towards a healthier, happier you.\r\n \r\n </p>\r\n \r\n \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-20 15:44:34', '2025-04-03 13:07:19'),
(103, 1, 7, 9, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404952-4.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Yaroslav Bilchenko   <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Registered Massage Therapist</span>\r\n                  <p>Yaroslav is a highly skilled and compassionate Registered Massage Therapist (RMT) who places a strong emphasis on providing client-centered care. His journey in the field began with rigorous training at Georgian College, an institution accredited by the Canadian Massage Therapy Council for Accreditation (CMTCA), ensuring his education meets the highest standards in the profession.\r\n\r\n‍<br>\r\n<br>\r\n\r\n\r\nDrawing from his diverse background in various healthcare settings, Yaroslav is deeply committed to delivering holistic care to his clients. His approach integrates a thorough understanding of anatomy, physiology, and massage techniques to address clients\' unique needs and promote their overall well-being. Whether relieving muscular tension, facilitating rehabilitation, or enhancing relaxation, Yaroslav\'s treatments are tailored to optimize each client\'s health outcomes.\r\n<br>\r\n<br>\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\nIn addition to his expertise in massage therapy, Yaroslav holds a double major in Economics and Politics from the esteemed University of Toronto. This academic background underscores his dedication to helping others and his belief in the importance of holistic healthcare. By combining his knowledge of healthcare practices with insights from economics and politics, Yaroslav brings a multifaceted perspective to his work, striving to empower his clients and contribute positively to their lives.\r\n\r\n‍<br>\r\n<br>\r\n\r\n\r\nCurrently, Yaroslav serves as a valued member of the team at Alliston Physiotherapy and sports rehabilitation, where he continues to uphold his commitment to excellence in client care. Whether through his therapeutic interventions, ongoing education, or community engagement, Yaroslav remains steadfast in his mission to make a meaningful difference in the lives of those he serves.\r\n\r\n\r\n </p>\r\n \r\n  \r\n \r\n \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-20 15:46:09', '2025-04-03 13:07:50'),
(104, 1, 7, 10, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404953-5.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\"> Vinayak Sharma<a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Physiotherapy Assistant</span>\r\n                  <p>Vinayak Sharma is a dedicated professional in the field of  Health Promotion, having graduated from Sheridan College Brampton with a Bachelor\'s degree in 2022.\r\n<br><br>\r\nWith a strong passion for rehabilitation and fitness, Vinayak is deeply invested in helping individuals achieve their optimal health and well-being. Whether it\'s guiding clients through rehabilitative exercises, designing personalized fitness programs, or offering expert advice on lifestyle modifications, Vinayak brings a wealth of knowledge and dedication to his practice.\r\n<br><br>\r\nDriven by his unwavering commitment to promoting health and wellness, both professionally and personally, Vinayak Sharma continues to make meaningful contributions to the field of Physiotherapy Assistant while embracing the enriching experiences that life has to offer.<br>\r\n<br>\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\n \r\n\r\n\r\n </p>\r\n \r\n  \r\n \r\n \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-20 15:48:39', '2025-04-03 13:14:36'),
(105, 1, 7, 11, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404953-6.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Esther   <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Physiotherapy Assistant/Personal Trainer</span>\r\n                  <p>Esther holds a Bachelor\'s degree in Physiotherapy, earned in her native India, where she honed her skills and knowledge in the intricacies of the human body and the art of facilitating recovery. Her commitment to excellence led her to two-year tenure at an Aqua Therapy Clinic, where she specialized in utilizing aquatic environments to enhance rehabilitation.\r\n<br>\r\n<br>\r\n\r\nDuring her professional journey, Esther embarked on an internship focused on sports and athletic recovery, gaining valuable insights into the unique challenges and requirements of athletes. This experience fueled her passion for promoting holistic health and well-being, pushing her to pursue a Fitness and Health Promotion Diploma in Canada.\r\n<br>\r\n<br>\r\n\r\nCurrently serving as a dedicated Physiotherapy Assistant at Alliston Physiotherapy and Sports Rehabilitation, Esther brings a wealth of international and diverse experience to our team. Her commitment to providing exceptional service is evident in every aspect of her work, as she strives to contribute to each patient\'s journey toward recovery with personalized care and a warm smile.\r\n\r\n\r\n<br>\r\n<br>\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\n \r\nBeyond her technical expertise, Esther is driven by a genuine desire to spread happiness and positivity. She believes in fostering a supportive and uplifting environment, where patients not only recover physically but also find solace in a friendly and encouraging atmosphere. Esther also resides in the town of Alliston. \r\n\r\n </p>\r\n \r\n  \r\n \r\n \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-20 15:49:29', '2025-04-03 13:08:41'),
(106, 1, 7, 12, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404953-7.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Chandni   <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Physiotherapy Assistant</span>\r\n                  <p>Chandni holds a Bachelor\'s degree in Physiotherapy from her home country. She has further expanded her expertise by graduating in Fitness and Health Promotion. Chandni is passionately driven to assist patients in their recovery journey, bringing a unique blend of education and hands-on experience to our clinic.\r\n<br>\r\n<br>\r\n\r\nChandni\'s commitment to patient well-being extends beyond the clinic. She is dedicated to helping individuals regain their health and mobility, and her compassionate approach plays a crucial role in the overall care provided at Alliston Physiotherapy and Sports Rehab.\r\n<br>\r\n<br>\r\n\r\nBeyond her professional endeavours, Chandni enjoys a variety of hobbies, including engaging in outdoor sports to stay active and maintain a healthy lifestyle. Her love for singing and reading reflects her diverse interests and well-rounded personality. \r\n\r\n\r\n<br>\r\n<br>\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\n  \r\n </p>\r\n \r\n  \r\n \r\n \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-20 15:50:26', '2025-03-31 14:20:03'),
(107, 1, 7, 13, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404953-8.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Twisha Patel   <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Physiotherapy Assistant</span>\r\n                  <p>Twisha Patel, a dedicated professional in the field of physiotherapy, completed her bachelor\'s degree in Physiotherapy in her home country. Her journey in healthcare began with valuable hands-on experience working with patients in a clinical setting, where she honed her skills and developed a deep understanding of patient care.\r\n<br>\r\n<br>\r\n\r\nHolistic Approach with Yoga: Twisha\'s commitment to holistic well-being led her to pursue a diploma in yoga. This additional qualification enhances her approach to patient care, integrating physical therapy with the principles of yoga for a comprehensive healing experience.\r\n<br>\r\n<br>\r\n\r\nContinued Education in Fitness and Health Promotion: Driven by a passion for promoting health and wellness, Twisha furthered her education at Georgian College, graduating with a specialization in fitness and health promotion. This diverse background equips her with a unique perspective in supporting patients on their journey to recovery.\r\n\r\n\r\n\r\n\r\n<br>\r\n<br>\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\n  Passionate Patient Advocate: Twisha\'s enthusiasm for working at Alliston Physiotherapy and Sports Rehabilitation with patients is evident in her daily interactions. She is dedicated to assisting individuals on their road to recovery, providing the care and support necessary for each unique journey.\r\n<br>\r\n<br>\r\n\r\n<strong>Life beyond Healthcare:</strong> Beyond the clinic, Twisha finds joy in exploring new places through travel and expressing her creativity in the kitchen through cooking. These passions enrich her life and contribute to her well-rounded approach to both work and leisure. Twisha also resides in the town of Alliston. \r\n </p>\r\n \r\n  \r\n \r\n \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-20 15:51:16', '2025-04-03 13:06:52'),
(108, 1, 7, 14, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1742217377-9.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Razeena   <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\"> Office Administrator</span>\r\n                  <p>Razeena, a distinguished graduate with honors from Oxford College in Medical Office Administration, is making waves in the healthcare field. Her academic excellence extends beyond borders, as she achieved distinction in both Biology and Chemistry.\r\n<br>\r\n<br>\r\n\r\nPassion for Patient Care: Razi\'s true passion lies in patient care. Her genuine love for working with patients of all ages and abilities is evident in her daily interactions. Whether it\'s assisting with administrative tasks or providing a comforting presence, Razi is dedicated to ensuring a positive and supportive healthcare experience.\r\n<br>\r\n<br>\r\n\r\nAspiring Nurse: Driven by a desire to contribute even more to the healthcare field, Razi aspires to pursue a career in nursing. Her academic background and hands-on experience in medical office administration provide a solid foundation for her future endeavours in nursing. \r\n\r\n\r\n\r\n<br>\r\n<br>\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 <p>\r\n Commitment to Learning: Razi is not only proficient in administrative tasks but also actively engages in expanding her knowledge of physical therapy. Working closely with the Physiotherapist on a daily basis, she is committed to continuous learning, contributing to the overall well-being of the patients she serves.\r\n<br>\r\n<br>\r\n\r\nRazi takes care of all patients scheduling and billing to all insurance. Razi looks forward to helping you with all your patient care needs.\r\n<br>\r\n<br>\r\n\r\nBeyond the Office: Outside the medical office, Razi finds joy in spending time with family, exploring new destinations through travel, and embracing the refreshing waters through her love for swimming. These experiences enrich her life and contribute to her holistic approach to healthcare.\r\n<br>\r\n<br>\r\n\r\nJoin Razi on her journey of compassionate patient care and continuous learning. With a heart dedicated to making a positive impact, she is not just an MOA but a healthcare professional with a vision for a brighter, healthier future. Razi also resides in the town of Alliston ON.\r\n<br>\r\n \r\n\r\n</p><h5>CERTIFICATIONS:</h5>\r\n<ul class=\"pq-portfolio-list-check\">\r\n <li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> FIRST AID CPR &amp; AED CERTIFIED</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> INFECTION PREVENTION AND CONTROL</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> CERTIFIED BAUERFEIND BRACE FITTER</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> OCCUPATIONAL HEALTH AND SAFETY</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> CHAIN OF TRANSMISSION &amp; RISK ASSESSMENT</li>\r\n\r\n<li><i aria-hidden=\"true\" class=\"ion ion-checkmark\"></i> BASIC LIFE SUPPORT (HCP)  </li>\r\n</ul>\r\n <p></p>\r\n \r\n  \r\n \r\n \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-20 15:52:11', '2025-03-31 14:21:14'),
(109, 6, 19, 38, 'Resident Physiotherapist', 1, 1, '2025-03-31 14:24:04', '2025-03-31 14:37:39'),
(110, 7, 20, 38, '83', 1, 1, '2025-03-31 14:24:04', '2025-03-31 14:37:39');
INSERT INTO `tasap_custom_field_group_type_values` (`cf_group_type_value_id`, `cf_group_type_id`, `cf_gt_class_template_id`, `data_id`, `field_value`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(111, 1, 7, 38, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404953-11.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Margi Patel  <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Resident Physiotherapist</span>\r\n                  <p>Margi Patel joined Alliston Physiotherapy &amp; Sports Rehabilitation as a Resident Physiotherapist in February 2025.Margi Patel has a solid foundation in both physiotherapy and fitness, with a diverse skill set that spans multiple areas of rehabilitation. Her background, combining her physiotherapy bachelors education from her home country and a specialized diploma in Fitness and Health Promotion in Canada, gives her a well-rounded approach to treating various conditions, from musculoskeletal and neurological issues to sports-related injuries. Her expertise in biomechanics and exercise prescription would certainly allow her to design tailored treatment plans to help patients achieve better outcomes.She is an active member of College of Physiotherapy of Ontario. </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-31 14:24:04', '2025-03-31 14:42:46'),
(112, 6, 19, 39, 'Patient Coordinator', 1, 1, '2025-03-31 14:25:58', '2025-07-07 15:18:47'),
(113, 7, 20, 39, '87', 1, 1, '2025-03-31 14:25:58', '2025-03-31 14:34:59'),
(114, 1, 7, 39, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404953-12.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Pushti Patel  <a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Office Administrator</span>\r\n                  <p>Pushti joined Alliston Physiotherapy &amp; Sports Rehabilitation as an office administrator, bringing her exceptional organizational skills and attention to detail to ensure the clinic operates efficiently. With a solid background in customer service and administrative support from a Seneca College in Canada , Pushti thrives in managing patient appointments, assisting with inquiries, and coordinating a wide range of clinic services. Her strong work ethic and commitment to delivering the highest standard of service play a key role in creating a welcoming and professional environment for both patients and staff.<br><br>\r\n\r\nPushti’s passion for healthcare shines through in her daily work, as she strives to ensure every patient has a positive experience from the moment they walk through the door. Known for her beautiful smile, warm personality, and excellent communication skills, Pushti has earned the trust and affection of patients, who appreciate her friendly demeanor and attentiveness. Colleagues also admire her hardworking nature and dedication to supporting the team in any way possible. Whether it’s managing clinic operations, assisting with scheduling, or helping to maintain a calm and organized atmosphere, Pushti is a vital and valued member of the clinic.\r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>\r\n		 \r\n		 \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-31 14:25:58', '2025-03-31 14:43:06'),
(115, 6, 19, 40, 'Office Administrator', 1, 1, '2025-03-31 14:30:06', '2025-03-31 14:43:29'),
(116, 7, 20, 40, '85', 1, 1, '2025-03-31 14:30:06', '2025-03-31 14:43:29'),
(117, 1, 7, 40, '<section class=\"single-team  \">\r\n      <div class=\"container\">\r\n         <div class=\"row align-items-center\">\r\n            <div class=\"col-xl-4\">\r\n               <div class=\"pq-patient-img\"> <img src=\"/storage/media/1743404953-13.jpg\" class=\"team-img\" alt=\"\"> </div>\r\n            </div>\r\n            <div class=\"col-xl-8 mt-xl-0 mt-4 ps-xl-5\">\r\n               <div class=\"pq-section pq-style-1 text-left\"> \r\n                  <h5 class=\"pq-section-title\">Radha Seenarine<a href=\"/our-team\" class=\"back-btn pull-right\"><i class=\"ion-ios-arrow-left\"></i> Back</a></h5><span class=\"pq-section-sub-title\">Office Administrator</span>\r\n                  <p>Radha joined Alliston Physiotherapy &amp; Sports Rehabilitation as an office administrator and she completed her studies at Oxford College in Barrie, where she developed a strong foundation in office administration, customer service, and healthcare support. Her attention to detail and efficient time management allow her to seamlessly manage patient appointments, assist with inquiries, and coordinate the various services offered by the clinic.<br><br>\r\n\r\nRadha\'s commitment to delivering outstanding service is reflected in her proactive approach to problem-solving and her ability to handle any situation with a positive and professional attitude. She is dedicated to ensuring that every patient’s experience is as seamless and positive as possible, from their initial contact to their ongoing care. Her strong communication skills enable her to collaborate effectively with patients and staff, contributing to a harmonious and efficient clinic environment.<br>\r\n<br>\r\n\r\nPatients often praise her for her friendly nature, and many appreciate her ability to put them at ease. Colleagues value her reliability and team spirit, knowing they can always count on Radha to lend a helping hand when needed.Outside of her professional life, Radha enjoys cooking, which she finds to be a relaxing and creative outlet. \r\n </p>\r\n               </div>\r\n                \r\n                \r\n                \r\n                \r\n                \r\n            </div>\r\n         </div>		 \r\n		 \r\n		 \r\n      </div>\r\n   </section>', 1, 1, '2025-03-31 14:30:06', '2025-04-03 13:13:56'),
(118, 5, 23, 35, '2', 1, 1, '2025-07-08 17:58:15', '2025-07-08 17:58:59'),
(119, 1, 30, 47, '<p><br></p>', 1, 1, '2026-03-06 15:16:49', '2026-03-06 15:17:03');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_custom_field_type`
--

CREATE TABLE `tasap_custom_field_type` (
  `cf_type_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(50) NOT NULL,
  `field_type` varchar(50) NOT NULL,
  `field_default_options` text NOT NULL COMMENT 'JSON : default generate field options',
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_custom_field_type`
--

INSERT INTO `tasap_custom_field_type` (`cf_type_id`, `title`, `field_type`, `field_default_options`, `c_order`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Text', 'text', '{\"type\":\"text\",\"label\":\"Text Field\",\"placeholder\":\"Dummy Text Field\",\"required\":false,\"description\":\"lorem ipsum doler\",\"instruction\":\"Doler ipsum doler\"}', 1, 1, 1, 0, '2024-07-25 03:17:30', '2024-07-25 03:17:30'),
(2, 'Image', 'image', '{\"type\":\"image\",\"label\":\"Image Field\",\"placeholder\":\"Dummy image Field\",\"required\":false,\"description\":\"lorem ipsum doler\",\"instruction\":\"Doler ipsum doler\"}', 2, 1, 1, 0, '2024-07-25 03:17:30', '2024-07-25 03:17:30'),
(3, 'Textarea', 'textarea', '{\"type\":\"textarea\",\"label\":\"Textarea Field\",\"placeholder\":\"Dummy Textarea Field\",\"required\":false,\"rows\":3,\"cols\":3,\"description\":\"lorem ipsum doler\",\"instruction\":\"Doler ipsum doler\"}', 3, 1, 1, 0, '2024-07-25 03:17:30', '2024-07-25 03:17:30'),
(4, 'Editor', 'editor', '{\"type\":\"editor\",\"label\":\"Editor Field\",\"placeholder\":\"Dummy Editor Field\",\"required\":false,\"rows\":3,\"cols\":3,\"description\":\"lorem ipsum doler\",\"instruction\":\"Doler ipsum doler\"}', 4, 1, 1, 0, '2024-07-25 03:17:30', '2024-07-25 03:17:30'),
(5, 'Module Dropdown', 'moduleDropdown', '{\"type\":\"moduleDropdown\",\n          \"label\":\"Dropdown Name\",\n          \"placeholder\":\"select\",\n          \"required\":false,\n          \"multiple\":false,\n          \"drag_and_sort\":false,\n          \"module_selected_model\":\"\",\n          \"description\":\"lorem ipsum doler\",\n          \"instruction\":\"Doler ipsum doler\"}', 5, 1, 1, 0, '2022-11-29 08:22:54', '2022-11-29 08:22:54');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_email_templates`
--

CREATE TABLE `tasap_email_templates` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(150) DEFAULT NULL,
  `subject` varchar(255) NOT NULL,
  `message` longtext NOT NULL,
  `from_name` varchar(100) DEFAULT NULL,
  `from_email` varchar(100) NOT NULL,
  `to_emails` varchar(255) NOT NULL,
  `cc_emails` varchar(255) DEFAULT NULL,
  `bcc_emails` varchar(255) DEFAULT NULL,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_email_templates`
--

INSERT INTO `tasap_email_templates` (`id`, `name`, `subject`, `message`, `from_name`, `from_email`, `to_emails`, `cc_emails`, `bcc_emails`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Quick Book Appointment Template', 'Quick Book Appointment Enquiry', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n						<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">Detail:</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px 10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>First Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#f_name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Last Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#l_name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Email</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\"><a href=\"mailto:{#email}\" target=\"_blank\">{#email}</a></td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Phone</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#mobile}</td>\r\n														</tr>\r\n<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#preferred_date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Message</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#message}</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										<tr>\r\n											<td style=\"width:100%\">\r\n												<h1>Thank you for contacting us.</h1><br><br> We have received your Form\r\n												Submission our Staff will be contacting you within 24 hours.\r\n												<br><br><strong>Have a great day ahead!</strong>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"70\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal; \" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"95%\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"53%\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td align=\"right\" width=\"47%\">  Address: 27 Victoria Street E, Alliston, ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'bedh@tastechnologies.com', '', '', 0, 1, '2024-10-03 23:18:17', '2025-09-25 11:54:10'),
(2, 'Contact Us Template', 'Contact Enquiry', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n						<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">Detail:</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px 10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n													<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Email</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\"><a href=\"mailto:{#email}\" target=\"_blank\">{#email}</a></td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Phone</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#mobile}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Subject</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#subject}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Message</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#message}</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										<tr>\r\n											<td style=\"width:100%\">\r\n												<h1>Thank you for contacting us.</h1><br><br> We have received your Form\r\n												Submission our Staff will be contacting you within 24 hours.\r\n												<br><br><strong>Have a great day ahead!</strong>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"70\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal; \" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"95%\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"53%\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td align=\"right\" width=\"47%\">  Address: 27 Victoria Street E, Alliston, ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', '', '', 0, 1, '2024-10-03 23:18:17', '2025-09-25 11:53:44'),
(3, 'Book Appointment Template', 'Book Appointment Enquiry', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n						<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">Detail:</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px 10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Patient Type</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#patient_type}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>First Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#f_name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Last Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#l_name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Email</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\"><a href=\"mailto:{#email}\" target=\"_blank\">{#email}</a></td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Phone</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#mobile}</td>\r\n														</tr>\r\n<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date of Birth</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#dob}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Address</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#address}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>City</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#city}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>State/Province</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#state}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Postal Code</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#postal_code}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#preferred_date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Best time to call</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#best_time_to_call}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Message</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#message}</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										<tr>\r\n											<td style=\"width:100%\">\r\n												<h1>Thank you for contacting us.</h1><br><br> We have received your Form\r\n												Submission our Staff will be contacting you within 24 hours.\r\n												<br><br><strong>Have a great day ahead!</strong>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"70\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal; \" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"95%\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"53%\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td align=\"right\" width=\"47%\">  Address: 27 Victoria Street E, Alliston, ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', '', '', 0, 1, '2024-10-03 23:18:17', '2025-09-25 17:53:09'),
(4, 'New Patient Template', 'New Patient Enquiry', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">\r\n								Detail:</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px 10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Date of Birth</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#dob}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Type Appointment Note</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#type_of_appointment}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Phone (Home)</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#phone_home}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Phone (Work)</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#phone_work}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Doctor Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#doctor_name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Occupation</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#occupation}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Address</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#address}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Allergies</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#allergies}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Phone</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#phone}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\">\r\n																<b>Email</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#email}</td>\r\n											\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Emergency Contact\r\n													Number</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#emergency_contact_no}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Health Care\r\n													Number</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#health_care_no}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Reason <span class=\"il\">you</span> are seeking\r\n													Physiotherapy?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#physiotherapy_reason}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>How long has\r\n													condition existed?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#how_long_condition_existed}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>In general, how is\r\n													your health?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#health}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Referred for\r\n													Physiotherapy by</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#referred_physiotherapy}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Referred for\r\n													Physiotherapy by(Other text)</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#physiotherapy_other}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b><span class=\"il\">Have</span> <span class=\"il\">you</span> had\r\n													Physiotherapy in the past?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_past_physiotherapy}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Current Medication:\r\n													Name</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#current_medications_name}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Current Medication:\r\n													Condition</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#current_medications_condition}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Other medical\r\n													conditions to note</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#current_medications_notes}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Injury Type</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#injury_type}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Injury Date</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#injury_date}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Surgeries Type</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#surgeries_type}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Surgeries Date</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#surgeries_date}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Are <span class=\"il\">you</span> currently receiving\r\n													treatment from another health care professional?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#treatment_from_professional}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>1) Do <span class=\"il\">you</span> <span class=\"il\">have</span> any heart\r\n													problems?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_heart_problems}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>2) Do <span class=\"il\">you</span> <span class=\"il\">have</span> any thyroid\r\n													problems?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_thyroid_problems}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>3) Do <span class=\"il\">you</span> <span class=\"il\">have</span> high or low\r\n													blood pressure?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_high_or_low_blood_pressure}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>4) Are <span class=\"il\">you</span> currently taking any\r\n													medications?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_taking_any_medications}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>If yes please\r\n													list</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_taking_any_medications}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>5) <span class=\"il\">Have</span> <span class=\"il\">you</span> <span class=\"il\">been</span> diagnosed with arthritis?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_taking_any_medications}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>6) Do <span class=\"il\">you</span> <span class=\"il\">have</span> diabetes?</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_diabetes}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>7) Do <span class=\"il\">you</span> <span class=\"il\">have</span> or ever had\r\n													cancer?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_ever_had_cancer}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>8) <span class=\"il\">Have</span> <span class=\"il\">you</span> ever broken a\r\n													bone?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_broken_a_bone}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>9) Do <span class=\"il\">you</span> <span class=\"il\">have</span> any metal\r\n													fixations, plates, screws, etc.?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_metal_fixations}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>10) Do <span class=\"il\">you</span> smoke?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#do_you_smoke}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>How much</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#smoke_much}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>11) Do <span class=\"il\">you</span> <span class=\"il\">have</span> any abdominal\r\n													problems, ie hernia, ulcer?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_abdominal_problems}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>12) <span class=\"il\">Have</span> <span class=\"il\">you</span> had any\r\n													previous surgeries?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_previous_surgeries}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Please list</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#previous_surgeries_list}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>13) If female, are\r\n													<span class=\"il\">you</span> or could\r\n													<span class=\"il\">you</span> be pregnant?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#are_you_pregnant}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>14) <span class=\"il\">Have</span> <span class=\"il\">you</span> <span class=\"il\">been</span> <span class=\"il\">involved</span> in a\r\n													previous\r\n													car accident?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_previous_car_accident}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>If yes, date</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#previous_car_accident_date}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>15) Do <span class=\"il\">you</span> <span class=\"il\">have</span> any\r\n													allergies, skin irritations, infections, etc?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_any_allergies}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>16) Do <span class=\"il\">you</span> <span class=\"il\">have</span> asthma or any\r\n													respiratory problems?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_asthma}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>17) Do <span class=\"il\">you</span> <span class=\"il\">have</span> any other\r\n													health problems not listed above?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_other_health_problems}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>18) Is there any\r\n													other reason that <span class=\"il\">you</span> should not do physical\r\n													activities?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#has_any_other_reason}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Last physiotherapy\r\n													visit?</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#last_physiotherapy_visit}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Emergency contact\r\n													person</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#emergency_contact_person}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Emergency phone</b>\r\n											</td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#emergency_phone}</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Clients\r\n													signature</b></td>\r\n											<td width=\"5%\">:</td>\r\n											<td width=\"65%\">{#client_sign}</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n						<tr>\r\n							<td style=\"width:100%\">\r\n								<h1>Thank you for contacting us.</h1><br><br> We have received your Form\r\n								Submission our Staff will be contacting you within 24 hours.\r\n								<br><br><strong>Have a great day ahead!</strong>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n	<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n	<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n</tr>\r\n\r\n<tr>\r\n	<td align=\"center\" bgcolor=\"#2e343e\" height=\"70\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal; \" valign=\"middle\">\r\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"95%\">\r\n			<tbody>\r\n				<tr>\r\n					<td width=\"53%\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff\"> 705-434-0645</a><br>\r\n\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\">\r\n							info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n\r\n					<td align=\"right\" width=\"47%\"> Address: 27 Victoria Street E, Alliston, ON L9R 1T9, Canada </td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n	</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', '', '', 0, 1, '2024-10-03 23:18:17', '2025-09-25 11:53:20'),
(5, 'AUTHORIZATION FOR RELEASE OF CLIENT INFORMATION - Template', 'AUTHORIZATION FOR RELEASE OF CLIENT INFORMATION', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n						<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">AUTHORIZATION FOR RELEASE OF CLIENT INFORMATION:</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n													<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Patient Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date Of Birth</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px 0 0 10px;\" width=\"100%\"><b>PART A - Pertaining to Extended Health Care Centre</b><br>\r\n</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Signature</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Witness</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#witness}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td colspan=\"3\" style=\"padding:10px 0 0 10px;\" width=\"100%\"><b>PART B - Pertaining to Clients with Work Related and/or Motor Vehicle Injuries</b><br>\r\n</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Signature</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Witness</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#witness}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td colspan=\"3\" style=\"padding-left:10px\" width=\"100%\"><input type=\"checkbox\"> X-Ray\r\n<input type=\"checkbox\"> CT <input type=\"checkbox\"> MRI <input type=\"checkbox\" checked=\"\"> Ultrasound</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										<tr>\r\n											<td style=\"width:100%;padding:20px 10px;\">\r\n												<h2>Thank you for contacting us.</h2> We have received your Form\r\n												Submission our Staff will be contacting you within 24 hours.\r\n												<br><br><strong>Have a great day ahead!</strong>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"50\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal;padding:0 20px;\" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"s4\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"50%\" style=\"color:#fff\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff;\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td width=\"50%\" style=\"text-align:right;color:#fff;\">  Address: 27 Victoria Street E, Alliston, <br>ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', NULL, NULL, 0, 1, '2026-03-19 16:33:31', '2026-03-19 16:33:31');
INSERT INTO `tasap_email_templates` (`id`, `name`, `subject`, `message`, `from_name`, `from_email`, `to_emails`, `cc_emails`, `bcc_emails`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(6, 'Health Questionnaire - Template', 'Health Questionnaire', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n						<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">ALLISTON PHYSIOTHERAPY &amp; SPORTS REHABILITATION</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n													<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Patient Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"40%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Date </b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"40%\">{#date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Family Doctor\'s Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"40%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Doctors Phone No</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"40%\">{#phone}</td>\r\n														</tr>\r\n<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>1.Do you have any heart problems?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>2.Do you have any thyroid problems?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>3.Do you have HIGH or LOW blood pressure?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>4.Are you currently taking any medications?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">If, Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>5.Have you been diagnosed with arthritis?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>6.Do you have diabetes?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>7.Do you have or ever had cancer?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>8.Have you ever broken a bone?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>9.Do you have any metal fixations, plates, screws, etc.?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>10.Do you smoke?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\">&nbsp;</td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">How much</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>11.Do you have any abdominal problems, ie hernia, ulcer?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>12.Have you had any previous surgeries</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>13.If female, are you or could you be pregnant?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>14.Have you been involved in a previous car accident?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\">&nbsp;</td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Accident Date</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>15.Do you have any allergies, skin irritations, infections, etc?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>16.Do you have asthma or any respiratory problems?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>17.Do you have any other health problems not listed above?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>18.Is there any other reason that you should not do physical activities?</b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Yes</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>When was your last Physiotherapy visit </b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">last visit</td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Where was your last Physiotherapy visit </b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Where</td>\r\n</tr>\r\n														\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Emergency contact person </b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">contact person </td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Emergency Phone </b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">Emergency Phone </td>\r\n</tr>\r\n														<tr>\r\n<td height=\"20\" style=\"padding-left:10px\" width=\"55%\"><b>Client’s Signature </b></td>\r\n<td width=\"5%\">:</td>\r\n<td width=\"40%\">sign</td>\r\n</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										<tr>\r\n											<td style=\"width:100%;padding:20px 10px;\">\r\n												<h2>Thank you for contacting us.</h2> We have received your Form\r\n												Submission our Staff will be contacting you within 24 hours.\r\n												<br><br><strong>Have a great day ahead!</strong>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"50\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal;padding:0 20px;\" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"s4\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"50%\" style=\"color:#fff\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff;\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td width=\"50%\" style=\"text-align:right;color:#fff;\">  Address: 27 Victoria Street E, Alliston, <br>ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', '', '', 0, 1, '2026-03-19 17:50:00', '2026-03-19 17:51:42'),
(7, 'Informed consent for physiotherapy treatment - Template', 'Informed consent for physiotherapy treatment', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650px\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">INFORMED CONSENT TO PHYSIOTHERAPY TREATMENT</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n													<tr>\r\n															<td colspan=\"3\" style=\"padding-left:10px;width:650px;\">I hereby request and consent to the performance of physiotherapy treatments and other physiotherapy procedures and techniques,<br> including various modes of physical modalities, manual techniques and exercise on me by the physiotherapist. Physiotherapy<br> assistants/kinesiologist will be part of providing treatment and will work under physiotherapist supervision named below or<br> any provider covering for the treating physiotherapist working in this clinic authorized by the physiotherapist.<br>\r\n\r\nI have had the opportunity to discuss with the physiotherapist<br> named below the nature and purpose of physiotherapy treatment and other procedures. I understand that results are not guaranteed <br>and only the treating physiotherapist will be responsible for any issues related or arising from treatment not the clinic, as all<br> health care practices, there are some slight risks of injury with treatment including, but not limited to, soft tissue<br> sprains/ strains, pain, heart attacks, stroke, etc. and agree to keep the therapist informed of any changes in my condition<br> (sometimes patients get bruising from soft tissue that’s normal). Also, I had the opportunity to discuss the<br> payment plan with the office administration regarding my private insurance, WSIB and MVA before IA.<br><br>\r\n\r\n<strong>FEE STRUCTURE FOR WSIB AND MVA:</strong><br><br>\r\n\r\n\r\nALL WSIB AND MVA PAYMENTS WILL BE CHARGED AS PER THE STANDARD FEE GUIDE.FOR MVA WILL GO THROUGH YOUR EXTENDED<br> HEALTH INSURANCE FIRST.PER SESSION COST IS $99.75 AND INITIAL ASSESSMENT IS $215 FOR MVA.</td>\r\n														</tr>\r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px;width:650px;\">\r\n															<strong>PRIVATE INSURANCE FEE STRUCTURE:</strong></td>\r\n														</tr>\r\n														<tr>\r\n															<td style=\"padding-left:10px\" width=\"48%\"> INITIAL ASSESMENT FOR ONE PART: $ 115<br>\r\n    FOLLOWS UP SESSIONS: $75<br>\r\n    INITIAL ASSESMENT FOR MULTI PARTS: $140<br>\r\n    FOLLOWS UP SESSIONS: $100<br>\r\n    INITIAL FOR TMJ: $130<br>\r\n    FOLLOWS UP: $100<br>\r\n    INITIAL FOR VESTIBULAR: $130</td>\r\n															<td width=\"2%\">:</td>\r\n															<td width=\"48%\">FOLLOWS UP: $100\r\n    INITIAL FOR VESTIBULAR: $130<br>\r\n    FOLLOW UP: $100<br>\r\n    LASER THERAPY: $100 PER SESSION<br>\r\n    SHOCKWAVE: $120 PER SESSION<br>\r\n    ACCUPUNTURE $100 TRACTION: $100 PER SESSION<br>\r\n    INITIAL ASSESSMENT CONCUSSION: $130<br>\r\n    FOLLOWS UP SESSIONS: $100</td>\r\n														</tr>\r\n\r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px 0 0 10px;width:650px;\"><strong>CONSENT TO PAYMENT</strong><br><br>\r\n\r\nI understand that I am responsible for payment of any fee for each treatment<br> unless this is paid for by my motor vehicle insurer or the Work Place Safety and Insurance Board.<br>\r\nI understand that I am responsible for keeping scheduled appointments and that<br> I will be charged a full treatment charge for appointments missed including WSIB/MVA without prior cancellation by phone or in person.<br> All overdue and outstanding payments will be charged with an additional 5% interest after 30 days and any pending accounts<br> after 30 days will be transferred to our accounts department.</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Physiotherapist’s Name </b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Physiotherapist’s Signature</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Patient Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Patient Signature</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Witness Signature</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n                                                        \r\n                                                        \r\n                                                       \r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px;width:650px;\"><strong>ALL THE NO SHOW APPOINTMENTS WILL BE FULLY CHARGED.24 HOURS NOTICE IS REQUIRED PRIOR TO ANY RE SCHEDULE/CANCELLATION</strong></td>\r\n														</tr>\r\n                                                        \r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"50\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal;padding:0 20px;\" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"s4\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"50%\" style=\"color:#fff\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff;\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td width=\"50%\" style=\"text-align:right;color:#fff;\">  Address: 27 Victoria Street E, Alliston, <br>ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', NULL, NULL, 0, 1, '2026-03-19 18:53:11', '2026-03-19 18:53:11'),
(8, 'Respectful conduct policy - Template', 'Respectful conduct policy', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">Respectful Conduct Policy</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px 0 0 10px;\" width=\"100%\">\r\n															<strong>PART A - Pertaining to Extended Health Care Centre</strong><br>\r\nAt Alliston Physiotherapy and Sports Rehabilitation, we are committed to providing a safe, respectful, and supportive environment<br> for both our clients and staff.\r\nAbusive language, aggressive behavior, or any form of misconduct toward our staff will not be tolerated.<br>\r\n\r\nWe appreciate your cooperation in maintaining a positive and professional atmosphere for everyone.<br><br>\r\n\r\n<strong>— Management Of Alliston Physiotherapy and Sports Rehabilitation</strong><br><br>\r\n</td>\r\n														</tr>\r\n													<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Patient Signature </b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date Of Birth</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px 0 0 10px;\" width=\"100%\">\r\n															<strong>OFFICE USE ONLY- INSURANCE INFORMATION</strong></td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Insurance Name </b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Member Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Policy Number</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#policy}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>ID Number</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#no}</td>\r\n														</tr>                                                        \r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Total Max for Physio</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#total}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Percentage</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#percentage}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Total Of Message </b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#total}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Percentage</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#percentage}</td>\r\n														</tr>\r\n														 <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Total max Of Braces </b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#total}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Percentage</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#percentage}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Policy year/Calendar yea</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#policy}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Update On</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#updated}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>By</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#by}</td>\r\n														</tr>\r\n                                                        \r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"50\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal;padding:0 20px;\" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"s4\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"50%\" style=\"color:#fff\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff;\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td width=\"50%\" style=\"text-align:right;color:#fff;\">  Address: 27 Victoria Street E, Alliston, <br>ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', NULL, NULL, 0, 1, '2026-03-19 19:21:04', '2026-03-19 19:21:04'),
(9, 'Consent soft tissue release - Template', 'Consent soft tissue release', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">CONSENT FOR SOFT TISSUE RELEASE</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px 0 0 10px;\" width=\"100%\"><b>Please read this information carefully, and ask your practitioner if there is anything you do not understand</b><br><br>\r\n\r\n<strong>What is soft tissue release?</strong><br>\r\n\r\nSoft tissue release focuses on the outer layers of muscle fibres, aiming for relaxation and relief from minor muscle tensions. It is a gentler approach,<br> employing techniques like kneading, stroking, and tapping to enhance blood circulation and promote a state of well- being.<br><br>\r\n<strong>What are the benefits of soft tissue release?</strong><br>\r\n\r\nSoft tissue release techniques can significantly enhance flexibility, allowing for greater movement and improved performance in both<br> athletic and daily activities. By releasing tension and restoring proper tissue function, STR enables individuals to move more freely and efficiently.<br><br>\r\n<strong>What is the purpose of soft tissue release?</strong><br>\r\n\r\nMuscle soft tissue therapy, is used extensively to reduce thickened or tight connective tissue, to release myofascial trigger points<br> that inhibit muscle contraction or cause pain and are used to reduce muscle tone and tension.<br><br>\r\n<strong>What does soft tissue release do to your body?</strong><br>\r\n\r\nSoft tissues connect and support other tissues and surround the organs in the body. They include muscles (including the heart), fat,<br> blood vessels, nerves, tendons, and tissues that surround the bones and joints.<br><br>\r\n<strong>What are the side effects to soft tissue release?</strong><br>\r\n\r\n\r\n    1. Patients may experience mild to standard soreness.<br>\r\n    2. Patients may have bruising after treatment that could last up to 2 weeks.<br>\r\n    3. Patient may have temporary pain flares and fatigue.<br><br>\r\n\r\n<strong>Statement of consent:</strong><br>\r\n\r\nI confirm that I have read and understand the above information, and I consent to having soft tissue release done<br> as a part of my treatment. I understand that I can refuse treatment at any time.</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Signature</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n													<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Patient Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n	\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"50\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal;padding:0 20px;\" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"s4\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"50%\" style=\"color:#fff\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff;\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td width=\"50%\" style=\"text-align:right;color:#fff;\">  Address: 27 Victoria Street E, Alliston, <br>ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', NULL, NULL, 0, 1, '2026-03-19 20:37:43', '2026-03-19 20:37:43'),
(10, 'Waiver - Template', 'Waiver', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">Release of Liability, Waiver of all Possible Claims and Assumption of Risk</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n													<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>I hereby acknowledge that I have agreed to meet with</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td colspan=\"3\" style=\"padding:10px 0 0 10px;\" width=\"100%\">(the “HCP”)\r\nAt Alliston Physiotherapy and Sports Rehabilitation (the “Facility”) for Physiotherapy (the“Services”) (Services provided).<br><br>\r\n\r\nI acknowledge and accept that there is a risk that I could be exposed to COVID-19 while attending the Facility.<br> I also acknowledge and accept that while receiving the Services, the HCP may need to be closer to me than the recommended social <br>distancing guidelines in order to assess and/or treat me. I acknowledge and confirm that I am willing to<br> accept this risk as a condition of attending the Facility to receive Services from the HCP.<br><br>\r\n\r\nIn consideration of the HCP agreeing to see me in person at the Facility, I agree to release the HCP and the Facility (if <br>applicable), their officers, directors, employees, agents, and volunteers (the “Releasees”) from any and all causes of action,<br> claims, demands, requests, damages, or any recourse whatsoever in respect of any personal injuries or other damages<br> which may occur or arise as a result of exposure to COVID-19 during my visit to the Facility<br> and/or through the provision of Services to me by the HCP.<br><br>\r\n\r\nI do hereby acknowledge and agree that the notwithstanding the generality of the foregoing, I declare that I will not commence <br>litigation or otherwise seek to recover damages or other compensation against the Releases based on any action, claim, demand,<br> request, loss, or any recourse whatsoever arising from any potential or actual exposure to COVID-19 while attending at<br> the Facility and/or through the provision of services to me by the HCP. I further acknowledge that the Releasees can rely<br> on this Release of Liability, Waiver of all Possible Claims and Assumption of Risk as a complete<br> defense to any and all claims, damages, causes of action, or recourse, or liability that may arise at any time.<br><br>\r\n\r\nI have carefully reviewed this Release of Liability, Waiver of all Possible Claims and Assumption of Risk and I fully acknowledge<br> that I fully understand the terms as set out above. I acknowledge that I am signing this Release<br> of Liability, Waiver of all Possible Claims and Assumption of Risk voluntarily.</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Patient Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>												\r\n                                                        \r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"50\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal;padding:0 20px;\" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"s4\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"50%\" style=\"color:#fff\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff;\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td width=\"50%\" style=\"text-align:right;color:#fff;\">  Address: 27 Victoria Street E, Alliston, <br>ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', NULL, NULL, 0, 1, '2026-03-20 16:14:50', '2026-03-20 16:14:50'),
(11, 'Sports Rehabilitation - Template', 'Sports Rehabilitation', '<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #006; color:#000;\" width=\"650\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" style=\"padding:10px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td align=\"center\" style=\"background: #2e343e;\"><img src=\"https://www.allistonphysiotherapy.com/cms/public/storage/setting/1742208443-logo.png\" class=\"CToWUd\" data-bit=\"iit\" style=\"width: 250px;padding: 20px 0;\">\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n				<div></div>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"padding:10px 20px\" valign=\"top\">\r\n				<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n					<tbody>\r\n						<tr>\r\n							<td height=\"20\" style=\"background-color:#ECECEC;font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#000;padding:7px 0 6px 13px;text-transform:uppercase; border:1px solid #ECECEC; border-bottom:0px;\">Sports Rehabilitation</td>\r\n						</tr>\r\n						<tr>\r\n							<td bgcolor=\"#fff\" style=\"padding:10px;border:1px solid #ececec\">\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n									<tbody>\r\n										<tr>\r\n											<td valign=\"top\" width=\"80%\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n													<tbody>\r\n													<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Name</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#name}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Date Of Birth</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Injured Area</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#injured}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Assessment Date</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#date}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Email</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#email}</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Address</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#address}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Phone</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#phone}</td>\r\n														</tr>   \r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>How did you hear about us?</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\"><input type=\"checkbox\"> Google <input type=\"checkbox\"> Friends <input type=\"checkbox\"> Family <input type=\"checkbox\" checked=\"\"> Reff By Doctor</td>\r\n														</tr>\r\n                                                        <tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Treatment Plan</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#sign}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\" style=\"padding-left:10px\" width=\"40%\"><b>Exercise</b></td>\r\n															<td width=\"5%\">:</td>\r\n															<td width=\"65%\">{#exercise}</td>\r\n														</tr>\r\n                                                        \r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td bgcolor=\"#FFFFFF\" height=\"5\">&nbsp;</td>\r\n		</tr>\r\n\r\n		<tr>\r\n			<td align=\"center\" bgcolor=\"#2e343e\" height=\"50\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#ffffff;font-weight:normal;padding:0 20px;\" valign=\"middle\">\r\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"s4\">\r\n					<tbody>\r\n						<tr>\r\n						<td width=\"50%\" style=\"color:#fff\">Call Us: <a href=\"tel:7054340645\" value=\"7054340645\" target=\"_blank\" style=\"color:#fff;\">  705-434-0645</a><br>\r\n						\r\n						Email Id: <a href=\"mailto:info@allistonphysiotherapy.ca\" style=\"color:#fff;\"> info@allistonphysiotherapy.ca</a>\r\n						&nbsp;</td>\r\n						\r\n						<td width=\"50%\" style=\"text-align:right;color:#fff;\">  Address: 27 Victoria Street E, Alliston, <br>ON L9R 1T9, Canada </td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>', 'Alliston Physiotherapy', 'info@allistonphysiotherapy.ca', 'info@allistonphysiotherapy.ca,info@tastechnologies.com,allistonphysio@gmail.com,testing@tastechnologies.com', NULL, NULL, 0, 1, '2026-03-20 18:30:04', '2026-03-20 18:30:04');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_enquiry`
--

CREATE TABLE `tasap_enquiry` (
  `enq_id` int(10) UNSIGNED NOT NULL,
  `type` varchar(50) NOT NULL DEFAULT 'contact_us',
  `patient_type` varchar(50) DEFAULT NULL,
  `f_name` varchar(50) DEFAULT NULL,
  `l_name` varchar(50) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) NOT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `subject` varchar(100) DEFAULT NULL,
  `address` varchar(150) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `postal_code` varchar(20) DEFAULT NULL,
  `service_type` varchar(100) DEFAULT NULL,
  `preferred_date` date DEFAULT NULL,
  `best_time_to_call` varchar(50) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `page_ref` varchar(255) DEFAULT NULL,
  `created_at` timestamp NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_enquiry`
--

INSERT INTO `tasap_enquiry` (`enq_id`, `type`, `patient_type`, `f_name`, `l_name`, `name`, `email`, `mobile`, `dob`, `subject`, `address`, `city`, `state`, `postal_code`, `service_type`, `preferred_date`, `best_time_to_call`, `message`, `ip_address`, `user_agent`, `page_ref`, `created_at`) VALUES
(1, 'book_appointment', 'returning_patient', 'Bedh Prakash', 'Roy', NULL, 'testing@tastechnologies.com', '4163214110', NULL, NULL, 'Test address', 'Brampton', 'Brampton', '123456', NULL, '2025-03-14', 'Morning,Afternoon,Evening', 'Testing', '152.58.138.155', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Mobile Safari/537.36', 'https://dev.allistonphysiotherapy.com/book-appointment', '2025-03-19 20:15:52'),
(2, 'contact_us', NULL, NULL, NULL, 'suganya', 'suganya@tastechnologies.com', '705-434-0645', NULL, 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', '101.0.63.89', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com/contact-us', '2025-03-21 13:18:07'),
(3, 'book_appointment', 'returning_patient', 'suganya', 's', NULL, 'suganya@tastechnologies.com', '705-123-0645', NULL, NULL, 'address', 'city', 'state', 'L9R 1T9', NULL, '2025-03-26', 'Morning', 'testing pls ignore', '101.0.63.89', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com/book-appointment', '2025-03-21 13:25:10'),
(4, 'quick_book_appointment', NULL, 'suganya', 's', NULL, 'suganya@tastechnologies.com', '416-987-4590', NULL, NULL, NULL, NULL, NULL, NULL, 'Sports Injury', '2025-04-04', NULL, 'testing', '101.0.63.89', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com', '2025-03-21 13:26:30'),
(5, 'contact_us', NULL, NULL, NULL, 'Bedh Prakash Roy', 'testing@tastechnologies.com', '4163214560', NULL, 'TESTING', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'THIS IS TEST', '103.102.122.166', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com/contact-us', '2025-07-09 11:49:30'),
(6, 'contact_us', NULL, NULL, NULL, 'suganya', 'suganya@tastechnologies.com', '705-434-0645', NULL, 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', '101.0.63.101', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com/contact-us', '2025-07-09 11:49:52'),
(7, 'book_appointment', 'returning_patient', 'suganya', 's', NULL, 'suganya@tastechnologies.com', '416-987-8765', NULL, NULL, 'testing', 'testing', 'testing', 'ON L9R 1T9', NULL, '2025-07-10', 'Morning', 'testing', '101.0.63.101', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com/book-appointment', '2025-07-09 11:57:48'),
(8, 'quick_book_appointment', NULL, 'testing', 'test', NULL, 'suganya@tastechnologies.com', '416-435-9640', NULL, NULL, NULL, NULL, NULL, NULL, 'Rehabilitation', '2025-07-10', NULL, 'testing', '101.0.63.101', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com', '2025-07-09 11:58:55'),
(9, 'quick_book_appointment', NULL, 'Bedh Prakash', 'Roy', NULL, 'testing@tastechnologies.com', '4163214560', NULL, NULL, NULL, NULL, NULL, NULL, 'Rehabilitation', '2025-09-20', NULL, 'TESTING', '103.102.122.191', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com', '2025-09-20 10:30:25'),
(10, 'quick_book_appointment', NULL, 'Bedh Prakash', 'Roy', NULL, 'testing@tastechnologies.com', '4163214560', NULL, NULL, NULL, NULL, NULL, NULL, 'Rehabilitation', '2025-09-20', NULL, 'TESTING 123', '103.102.122.191', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36', 'https://dev.allistonphysiotherapy.com', '2025-09-20 10:35:37'),
(11, 'book_appointment', 'returning_patient', 'Bedh Prakash', 'Roy', NULL, 'testing@tastechnologies.com', '4163214560', NULL, NULL, 'Test address', 'Brampton', 'Brampton', '123456', NULL, '2025-09-20', 'Morning,Afternoon', 'TEST PLEASE IGNORE IT.', '103.102.122.191', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-09-20 11:02:37'),
(12, 'book_appointment', 'new_patient', 'Jenna', 'Henderson', NULL, 'sadie4644@gmail.com', '4168301069', NULL, NULL, '119 Boyne Crescent', 'Alliston', 'Ontario', 'L9r1k3', NULL, '2025-09-22', 'Noon,Afternoon', 'Long term swelling of the left ankle. As well as instability due to weakening of the muscles. Looking to get thoughts on a custom brace of some sort as well as treatment', '142.189.87.13', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-09-23 01:59:42'),
(13, 'book_appointment', 'new_patient', 'Dallas', 'Cook', NULL, 'dc_globe_16@hotmail.com', '705-888-6950', NULL, NULL, '79 gray ave', 'Alliston', 'Ontario', 'L9R1P5', NULL, '2025-09-30', 'Afternoon', 'Hi I have a MCL strain and I’m looking to do some physio and purchase and MCL brace as well. Plz let me know what times may be available for Tuesday September 30th, you can call my cell anytime thanks.', '184.148.30.249', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-09-24 21:14:43'),
(14, 'book_appointment', 'returning_patient', 'Bedh Prakash', 'Roy', NULL, 'testing@tastechnologies.com', '41633321450', '1988-05-15', NULL, 'Test address', 'Brampton', 'Brampton', '123456', NULL, '2025-09-25', 'Morning,Evening', 'TESTING, PLEASE IGNORE IT\r\n-Thanks', '152.58.162.160', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-09-25 19:00:03'),
(15, 'book_appointment', 'new_patient', 'Milap', 'Singh', NULL, 'milap@tastechnologies.com', '705-434-0645', '1984-09-20', NULL, 'Abcd test', 'Toronto', 'Brampton', 'B7h 7h8', NULL, '2025-09-30', 'Noon', 'Testing form', '223.185.62.194', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-09-25 19:08:59'),
(16, 'contact_us', NULL, NULL, NULL, 'Pamela Fettes', 'pamela.fettes12@gmail.com', '705-444-4903', NULL, 'Re tmj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Had dental work and now my jaw doesn\'t sit right.   Looking for treatment to correct tmj', '97.111.179.230', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/contact-us', '2025-10-03 06:38:14'),
(17, 'book_appointment', 'returning_patient', 'Denise', 'Mcarthur', NULL, 'dcbarton@hotmail.com', '4168851343', '1984-08-31', NULL, '77 Lorne Thomas Place', 'New Tecumseth', 'ON', 'L0L 1L0', NULL, '2025-10-08', 'Noon,Afternoon', 'Id like to book aa massage sometime in the early afternoon or early evening. Please let me know his availability for October. Thank you', '173.34.163.161', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-06 09:15:15'),
(18, 'book_appointment', 'new_patient', 'Sarah', 'Masson', NULL, 'sarahis@rogers.com', '905-960-6393', '1998-08-19', NULL, '934 Ivsbridge Blvd', 'Newmarket', 'ON', 'L3X 1L6', NULL, '2025-10-21', 'Evening', 'Physiotherapy appointment. \r\nFree Tuesday, Thursday \r\nCan also do Friday during the day if available.', '99.254.134.69', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-15 01:23:53'),
(19, 'book_appointment', 'new_patient', 'Alexandra', 'Shannon', NULL, 'alexshannon22@hotmail.com', '7052419266', '2001-08-16', NULL, '364 Nelson St. East', 'Alliston', 'Ontario', 'L9R 1X6', NULL, '2025-10-16', 'Morning,Noon,Afternoon,Evening', 'Ever since I started my office job, I have been having issues and pain with my upper back and neck.', '204.40.130.130', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-16 07:51:08'),
(20, 'book_appointment', 'new_patient', 'Ramsin', 'Hido', NULL, 'jacquiemfuscaldo@gmail.com', '6479863783', '1984-02-14', NULL, '181 Nelson St W', 'Alliston', 'ON', 'L9R1H4', NULL, '2025-10-16', 'Morning', 'Need massage asap', '104.28.133.1', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-16 09:59:27'),
(21, 'book_appointment', 'new_patient', 'Jenny', 'Carney', NULL, 'carney.j@rogers.com', '416-617-1991', '1957-01-15', NULL, '14 Westmount Drive', 'Alliston', 'ON', 'L9R 9P5', NULL, '2025-10-20', 'Noon', 'I am very active and in really good shape for someone  my age. I am a yoga and gym fanatic. Have had ongoing issues with lower back, Piriformis Syndrome, and ITband. Experiencing numbness on left leg (quad area).', '99.232.161.158', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/390.0.817388646 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-20 08:23:38'),
(22, 'book_appointment', 'returning_patient', 'Sarah', 'Butterworth', NULL, 'butters@primus.ca', '9058363848', '1972-03-25', NULL, '51 Centre St N Box106', 'Beeton', 'ON', 'L0G1A0', NULL, '2025-10-29', 'Morning', 'Looking for assistance with left hip, ham, leg pain', '173.206.70.72', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/390.0.817388646 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-20 22:49:53'),
(23, 'book_appointment', 'new_patient', 'Katelyn', 'McDaid', NULL, 'kateylnmcdaid@outlook.com', '9057240645', '1991-07-29', NULL, '29 Burbank Circle', 'Everett', 'ON', 'L0M 1J0', NULL, '2025-10-23', 'Morning,Noon,Afternoon,Evening', 'Right knee physio for soccer injury.', '72.136.123.240', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-23 00:28:17'),
(24, 'book_appointment', 'new_patient', 'Nikke', 'Jeffries', NULL, 'nikkeauten@hotmail.com', '705-321-2693', '1978-01-12', NULL, '5282 Concession Rd 6', 'Alliston', 'ON', 'L9R1V3', NULL, '2025-11-05', 'Morning,Noon', 'Hi I have an old foot injury that I found out that I should have had it looked at the time. Can it still be worked on?\r\nThanks,\r\nNikke', '136.226.130.87', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-28 20:18:05'),
(25, 'book_appointment', 'new_patient', 'Gurinder', 'Dhillon', NULL, 'gdhillon0816@gmail.com', '6472267772', '1992-11-09', NULL, '1 Gilroy Court', 'Alliston', 'ON', 'L9R0K8', NULL, '2025-10-30', 'Afternoon', 'Would like to book a massage', '99.232.196.66', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0.1 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-29 05:25:15'),
(26, 'book_appointment', 'new_patient', 'Victoria', 'Zilinskas', NULL, 'topzi1111@gmail.com', '4164358960', '2014-02-23', NULL, '62 Fletcher Crescent', 'Alliston', 'ON', 'L9R 1M1', NULL, '2025-11-06', 'Morning,Noon,Afternoon,Evening', 'I am a prior patient (Laura Topping).  I am looking to book an appointment for my daughter, Victoria.  She experiences lockjaw and it was recommended by her dentist that she get physio before they put braces on her .  Please let me know availability asap.  Prefereable times are after 3:00 during week.  Thank you!', '99.232.196.120', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-10-31 20:37:41'),
(27, 'book_appointment', 'new_patient', 'Ruby', 'Dhillon', NULL, 'gogorobot510@gmail.com', '6479912907', '2005-10-05', NULL, 'Brampton', 'Brampton', 'On', 'L6r0w1', NULL, '2025-11-05', 'Morning', 'Ankle', '173.35.228.11', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-04 19:41:39'),
(28, 'book_appointment', 'new_patient', 'Mylia', 'Grubb', NULL, 'mylia.s.grubb@gmail.com', '7053916705', '2007-10-07', NULL, '14 Jamison dr', 'Rosemont', 'Ontario', 'L0M 1R0', NULL, '2025-11-07', 'Noon', 'Lower back sprain', '208.98.222.93', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-04 20:40:41'),
(29, 'book_appointment', 'new_patient', 'Parker', 'Flood', NULL, 'Sarah.Grimes@oetiker.com', '2497334609', '2012-07-03', NULL, '3 Willis Drive', 'Alliston', 'Ontario', 'L9R1M4', NULL, '2025-11-07', 'Afternoon,Evening', 'Basketball injury - Achillies strain.', '66.209.48.85', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-05 23:36:55'),
(30, 'book_appointment', 'new_patient', 'Rooney', 'Luh', NULL, 'tammiedipietro.tlr@gmail.com', '2893951963', '1948-07-13', NULL, '276 John w Taylor ave', 'Alliston', 'ON', 'L9R 0J4', NULL, '2025-11-17', 'Morning', 'Looking for 1 hr deep tissue', '99.232.176.116', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-10 08:55:10'),
(31, 'book_appointment', 'returning_patient', 'Chris', 'Graham', NULL, 'graham_11_@hotmail.com', '7059286186', '1983-06-18', NULL, '134 Victoria St E', 'Alliston', 'Ontario', 'L9R1K6', NULL, '2025-11-13', 'Evening', 'Recently suffered a achilles calf injury and need to start physio', '65.94.154.136', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-11 00:18:45'),
(32, 'book_appointment', 'new_patient', 'Ocean', 'Greaves', NULL, 'oceangreaves22@gmail.com', '9054248046', '2005-11-22', NULL, '3 Smyth Crescent', 'Beeton', 'Ontario', 'L0G 1A0', NULL, '2025-11-13', 'Afternoon,Evening', 'I was recently in a motor vehicle accident and was asked by insurance to get an assessment done and would like to schedule a time for that. :)', '99.232.212.176', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-11 13:20:36'),
(33, 'book_appointment', 'new_patient', 'Ajantha', 'Arulalan', NULL, 'arulalana@gmail.com', '9059235372', '1993-08-26', NULL, '226 King Street South', 'Alliston', 'ON', 'L9R 0H6', NULL, '2025-11-14', 'Morning,Noon', 'Neck pain', '99.232.198.125', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-14 13:13:17'),
(34, 'book_appointment', 'new_patient', 'Frank', 'Westcott', NULL, 'TrainToSantaFe@Hotmail.com', '7054352783', '1949-09-04', NULL, '21 GROHAL DRIVE', 'EVERETT', 'Ontario', 'L0M 1J0', NULL, '2025-11-25', 'Morning', 'Massage 1 hour Cost? Nov 25 or Dec 2nd could work', '99.232.208.152', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-17 02:05:09'),
(35, 'book_appointment', 'new_patient', 'David', 'Bruno', NULL, 'dbtwenty3@gmail.com', '4166253384', '1995-01-23', NULL, '215 strachan trail', 'Beeton', 'Ontario', 'L0G1A0', NULL, '2025-11-19', 'Morning,Noon,Afternoon,Evening', 'Physio for left shoulder', '72.136.123.250', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-19 23:03:50'),
(36, 'book_appointment', 'new_patient', 'Rosanna', 'Spadoni', NULL, 'rozspadoni@gmail.com', '(647)393-7497', '1956-11-28', NULL, '28 Brawton Dr.', 'Palgrave', 'ON', 'L7E 0E1', NULL, '2025-11-20', 'Morning,Afternoon,Evening', 'Seeking relief from chronic upper arm pain. Thinking, physiotherapy, laser, acupuncture, exercises,,or whatever you deem appropriate.', '72.143.207.171', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-21 05:28:22'),
(37, 'book_appointment', 'returning_patient', 'Chris', 'Graham', NULL, 'graham_11_@hotmail.com', '7059286186', '1983-06-18', NULL, '134 Victoria St E', 'Alliston', 'Ontario', 'L9R1K6', NULL, '2025-11-21', 'Morning', 'Going to have to cancel my appointment for tomorrow Friday November 21st 2025 as I got called into work and cannot make it', '66.209.48.85', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-21 10:52:39'),
(38, 'book_appointment', 'new_patient', 'Lora', 'Martino', NULL, 'lormartino91@gmail.con', '4169494498', '1991-08-02', NULL, '40 Centre Street', 'Angus', 'ON', 'L0M1B0', NULL, '2025-11-23', 'Afternoon,Evening', 'Anytime for evening for full body massage', '50.100.40.58', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-24 02:06:12'),
(39, 'book_appointment', 'new_patient', 'Patryk', 'Puchala', NULL, 'p.puchala@hotmail.com', '6479870390', '1991-01-05', NULL, '20 Maes Cres.', 'Mulmur', 'Ontario', 'L9V3H7', NULL, '2025-12-01', 'Morning,Noon,Afternoon,Evening', 'Left shoulder instability while doing bench press and other workouts. Not really pain but wierd akward weak feeling.', '72.136.107.94', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-24 18:26:12'),
(40, 'book_appointment', 'new_patient', 'Yashpreet', 'Kaur', NULL, 'yash6012000@gmail.com', '2262000666', '2000-01-06', NULL, '81 Lawrence D. Pridham Avenue', 'New Tecumseth', 'ON', 'L9R 1V4', NULL, '2025-11-29', 'Morning', 'N', '173.34.16.169', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-11-29 03:55:57'),
(41, 'book_appointment', 'new_patient', 'Bruce', 'Phillips', NULL, 'photoeleven@gmail.com', '6473398174', '1991-06-18', NULL, '26 Fraser Ave', 'New Tecumseth', 'ON', 'L0G 1W0', NULL, '2025-12-02', 'Morning,Noon,Afternoon,Evening', 'Is there any way to see someone for sciatic pain today? Thank you!', '174.119.144.205', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-12-02 19:33:05'),
(42, 'book_appointment', 'returning_patient', 'Danielle', 'Frias', NULL, 'daniellefrias13@gmail.com', '6473234123', '2002-06-13', NULL, '7 Dungey Crescent', 'Alliston', 'Ontario', 'L9R1X5', NULL, '2025-12-08', 'Morning,Noon,Afternoon,Evening', 'Not sure if I would be considered a new or returning patient, because I had an appointment here years ago.', '74.14.102.105', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-12-06 04:54:52'),
(43, 'book_appointment', 'new_patient', 'Shannon', 'Reid', NULL, 'dr.shannon.reid@outlook.com', '7057948234', '1989-12-09', NULL, '6880 County Rd 13', 'Everett', 'ON', 'L0M 1J0', NULL, '2025-12-20', 'Morning,Noon,Afternoon,Evening', 'Tmj', '174.88.96.145', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-12-08 01:07:46'),
(44, 'book_appointment', 'new_patient', 'caitlin', 'sant', NULL, 'caitlin.sant.17@gmail.com', '2899811580', '1998-06-30', NULL, '996019', 'Rosemont', 'Ontario', 'L0N 1R0', NULL, '2025-12-15', 'Afternoon,Evening', 'Booking for Physiotherapy after 4;40pm weekdays if possible - related to knee', '74.200.13.220', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2025-12-10 03:37:55'),
(45, 'contact_us', NULL, NULL, NULL, 'Ashley Ventrella', 'ashleyg.ventrella@gmail.com', '4168093061', NULL, 'Ankle injury', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'My son plays AAA hockey and hurt his ankle.  Looking into physio to strengthen it up.', '67.69.69.171', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0.1 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/contact-us', '2025-12-14 01:07:42'),
(46, 'book_appointment', 'new_patient', 'Yadwinder', 'Singh', NULL, 'ypannu1@gmail.com', '4168439191', '1993-08-18', NULL, '85 Brethet hts', 'Beeton', 'ON', 'L0G1A0', NULL, '2025-12-24', 'Afternoon', 'Have back pain', '173.32.30.226', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-12-21 11:54:23'),
(47, 'book_appointment', 'new_patient', 'Jonathan', 'Leone', NULL, 'leone.jon@gmail.com', '416-473-2758', '1993-10-07', NULL, '13 Fisher Drive', 'Everett', 'Ontario', 'L0M 1J0', NULL, '2025-12-30', 'Morning', 'Looking for services to treat lower back pain and mobility. Also have joint pain and muscle knotting in arms.', '99.232.197.253', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/29.0 Chrome/136.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2025-12-30 11:08:03'),
(48, 'book_appointment', 'returning_patient', 'Chris', 'Higney', NULL, 'christopherhigney@gmail.com', '4165189845', '1970-11-02', NULL, '8071 20th sideroad', 'Loretto', 'Ontario', 'L0G1L0', NULL, '2026-01-09', 'Afternoon', 'Problem with knee', '142.51.217.58', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-03 01:04:05'),
(49, 'book_appointment', 'returning_patient', 'Crystal', 'Rankine', NULL, 'c_rankine@rogers.com', '7057161345', '1982-12-02', NULL, NULL, 'Alliston', 'Ontario', 'L9r0a8', NULL, '2026-01-02', 'Evening', 'I have been to the clinic before for physio. I have scoliosis and a collar bone injury(nothing new). Just very tight back and consistent nagging pain. I work days at Baxter 7-3pm so I can be reached anytime after 3pm or weekends or though email. TIA \r\n-Crystal', '99.232.214.215', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-03 04:13:24'),
(50, 'book_appointment', 'new_patient', 'Jevon', 'Cornelius', NULL, 'jevon_26@hotmail.com', '6472090485', '1981-01-27', NULL, '24 Owens road', 'Alliston', 'Ontario', 'L9R0T3', NULL, '2026-01-05', 'Morning', '24 years of steel toe wearing. Right arm Rotator impingement. L+R golfer + tennis elbow. Left front of knee discomfort climbing stairs (skip step). Hip to leg limited range and occasional side of hip soreness. mid-back (left) occasional debilitating spasm with twist motion (old injury). Help me fix me. :-(', '209.29.168.64', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-03 21:56:55'),
(51, 'book_appointment', 'new_patient', 'Sayona', 'Sangeeth', NULL, 'sayonasangeeth@gmail.com', '4166165068', '1985-07-28', NULL, '132 , Heydon ave', 'Alliston', 'ON', 'L9R1P1', NULL, '2026-01-06', 'Evening', 'I hav tennis elbow', '76.68.135.39', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-06 09:40:46'),
(52, 'contact_us', NULL, NULL, NULL, 'Sydney Livermore', 'sydneyl@innovativeot.com', '7058170618', NULL, 'Client Referral', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Good Morning, \r\nI have a client who was involved in a MVA in 2024, we are hoping to connect with a massage therapist to support his continued recovery. Do you work with the HCAI system and have the capacity to take this client on?', '99.233.161.120', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15', 'https://www.allistonphysiotherapy.com/cms/public/contact-us', '2026-01-07 00:05:38'),
(53, 'book_appointment', 'new_patient', 'Christopher', 'Blanchette', NULL, 'chris.p.blanchette@gmail.com', '6474584243', '1986-04-14', NULL, '6624 County Road 10', 'ALLISTON', 'ON', 'L9R 1V2', NULL, '2026-01-08', 'Morning', 'Elbow pain.', '143.105.15.166', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-07 23:19:28'),
(54, 'book_appointment', 'new_patient', 'Kumaragururaj', 'Murugesan', NULL, 'kgrmurugesaun@gmail.com', '6478967399', '1997-12-03', NULL, '29 MICHAELIS ST, ALLISTON, ON, L9R 0L8', 'Alliston', 'ON', 'L9R 0L8', NULL, '2026-01-12', 'Morning', 'Would like to have an appointment to have my knee looked at \r\nI have been having pain for almost two weeks and it is getting worse', '174.88.96.247', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-11 22:51:34'),
(55, 'book_appointment', 'new_patient', 'Jikku', 'Viju', NULL, 'jikkuviju@gmail.com', '7056984875', '1995-09-26', NULL, '20 Riverley Lane', 'Alliston', 'ON', 'L9R1C5', NULL, '2026-01-13', 'Evening', 'Looking to book an appointment for massage therapy.', '99.232.195.200', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-14 03:41:20'),
(56, 'book_appointment', 'returning_patient', 'Elijah', 'Carreiro', NULL, 'gloriousmarrufo@gmail.com', '7054347702', '2009-01-09', NULL, '18 Jones Street', 'Alliston', 'Ontario', 'L9R0R5', NULL, '2026-01-21', 'Afternoon,Evening', 'Hello,\r\nI’m hoping to get some physiotherapy support for a lower back injury I picked up during training. I have a wrestling tournament coming up in two weeks, and I’d really love to be in the best shape possible to compete.', '136.226.77.74', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-22 03:27:10'),
(57, 'contact_us', NULL, NULL, NULL, 'Jennifer', 'Humbergradjennifer@gmail.com', '647 998 1823', NULL, 'Shoulder', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Hello.... My right shoulder is crippling me with pain.... Mri from July shows chronic calcium.... It hurts all the time and I can\'t move it freely... Overhead absolutely kills among other positions..... Can you help with this? Pls let me know.. I sent an email as well', '69.158.246.206', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/29.0 Chrome/136.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/contact-us', '2026-01-24 06:46:13'),
(58, 'book_appointment', 'new_patient', 'Jaycee', 'Edgar', NULL, 'jaycee.edgar@gmail.com', '647-268-3390', '1988-03-04', NULL, '84 Buchanan Drive', 'Alliston', 'Ontario', 'L9r0a2', NULL, '2026-01-30', 'Evening', 'I would love to book a massage with an RMT on Friday after 3:30pm if possible. Thank you!', '99.232.184.4', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-01-27 08:51:03'),
(59, 'book_appointment', 'new_patient', 'Loucas', 'Loucaides', NULL, 'lloucaides4@gmail.com', '4167324400', '1997-12-20', NULL, '316-247 King St N', 'Alliston', 'ON', 'L9R 1N4', NULL, '2026-02-06', 'Afternoon', 'Tightness in shoulder blade I\'d like help with', '74.14.102.57', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-01 01:50:52'),
(60, 'book_appointment', 'new_patient', 'Sevil', 'Tunca', NULL, 'sevil-tunca@hotmail.ca', '4165009131', '1990-01-16', NULL, '116 Kennedy Blvd', 'Alliston', 'Ontario', 'L9R 0V9', NULL, '2026-02-01', 'Morning,Noon,Afternoon,Evening', 'I would like start as soon as possible I injured my knee and I have a referral from Dr Ozon from Stevenson Memorial Hospital.', '161.184.86.241', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-01 04:15:10'),
(61, 'book_appointment', 'new_patient', 'Jordan', 'Rowden', NULL, 'jordanrowden@hotmail.com', '7054577292', '1997-09-30', NULL, '25 Owens Rd', 'Alliston', 'ON', 'L9R 0T3', NULL, '2026-02-02', 'Noon,Afternoon', 'Hi there, I’m looking to book a kind of assessment appointment. I ride horses for my job and have tendinitis and some arthritis so am dealing with some consistent soreness. I also had a fall back in October and am now experiencing some re occurring pain that I would like to sort out. I am unsure of what kind of appointment I need exactly so I’m hoping someone can help me out with this! Thank you!', '104.28.133.24', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-03 02:54:56'),
(62, 'book_appointment', 'returning_patient', 'Dak', 'Perry', NULL, 'dak@hotmail.com', '705-309-4044', '1959-05-09', NULL, '41 Mitchell Ave', 'Alliston', 'Ont', 'L9R1C2', NULL, '2026-02-13', 'Noon,Afternoon,Evening', 'I am returning from vacation on Friday and wanted to know if any appointments might be open to treat my shoulder as it has been injured while away. \r\nRegards\r\nDak', '190.80.252.214', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-12 05:26:26'),
(63, 'book_appointment', 'new_patient', 'Navdeep', 'Baraich', NULL, 'nbaraich@hotmail.com', '7059845796', '1984-01-13', NULL, '151 Shephard Ave', 'Alliston', 'ON', 'l9r0j8', NULL, '2026-02-15', 'Evening', 'Good morning!! I am looking for massage therapist.  After 3.30 . Thank you', '99.232.217.167', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/29.0 Chrome/136.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-15 20:53:01'),
(64, 'book_appointment', 'new_patient', 'bobbijo', 'stuart', NULL, 'stuartbobbijo@gmail.com', '6472617231', '1979-01-29', NULL, '2748 concession road 4', 'loretto', 'on', 'l0g1l0', NULL, '2026-02-18', 'Evening', 'Hello\r\nI am having pain in my left arm, similar to \"tennis elbow\' although not diagnosed officially \r\nI was looking for some acupuncture treatment or something else you may recommend to treat this pain so I can use my arm and lift things again. \r\n\r\nThe best times for me for an appointment are Monday or Wednesday around 445-5pm, or Thursdays and Fridays during the day. \r\n\r\nIf you have anything these days coming up please let me know. \r\n\r\nThank you', '198.103.184.85', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-16 20:22:29'),
(65, 'book_appointment', 'new_patient', 'Rae', 'Tuckey', NULL, 'rae.tuckey@outlook.com', '4168806623', '1991-08-28', NULL, '27 Burt Avenue', 'Alliston', 'Ontario', 'L9R0G8', NULL, '2026-02-21', 'Noon,Evening', 'Hello,\r\n\r\nI am looking for rehabilitation support for a concussion and neck injury. \r\n\r\nThe initial concussion was in 2013 from a car accident. I subsequently had a hairline skill fracture in 2016, other concussions in 2018, 2021, 2023, and one more recently in 2026. \r\n\r\nMonday and weekend appointm3nts are preferred. \r\n\r\nThank you and im looking forward to connecting.', '138.199.57.50', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/29.0 Chrome/136.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-17 03:48:37'),
(66, 'book_appointment', 'returning_patient', 'Austin', 'Pyle', NULL, 'trevuhh@gmail.com', '6472063059', '1998-08-16', NULL, '138 shephard ave', 'Alliston', 'Ontario', 'L9R0J6', NULL, '2026-02-17', 'Morning,Noon', 'Hello! I have an appointment 2026-02-17 at 12:30pm, is there anyway I can move that appointment to later in the day or evening? Ive had something come up during the day that I must attend.\r\n\r\nPlease give me a call back 647-206-3059\r\n\r\nThanks, \r\n\r\nAustin', '142.189.82.183', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-17 09:57:56'),
(67, 'book_appointment', 'new_patient', 'William', 'King', NULL, 'jwmking@gmail.com', '7052411827', '1972-01-12', NULL, '64 Steele Street', 'Alliston', 'ON', 'L9R 0E5', NULL, '2026-02-18', 'Morning,Noon,Afternoon', 'left the and ankle pain - calcific tendonitis of Achilis tendon , degenerative changes of tibiotalar joint anteriorly\r\nLeft lower leg pain. Query history of left lower fibula fracture. \r\nThere is ossification of the distal Achilles tendon, which may represent calcific tendinosis or possibly an old injury.\r\nThere is degenerative changes at the anterior tibiotalar articulation, likely old fracture deformity of the distal fibula.\r\n1. Degenerative changes are seen at the tibiotalar articulation anteriorly.\r\n2. Calcific tendinosis or old injury of the Achilles tendon.\r\n3. Likely old fracture deformity of the lateral malleolus.', '99.232.180.115', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-18 13:47:04'),
(68, 'book_appointment', 'returning_patient', 'Barb', 'Lord', NULL, 'barb.h.lord@gmail.com', '416 948-9790', '1952-05-12', NULL, '166 Shephard Ave.', 'Alliston', 'Ontario', 'L9R 0J9', NULL, '2026-02-25', 'Morning', 'I have a very sore right hip.  May I come in for an appointment tomorrow in the early afternoon?', '184.148.30.9', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-25 07:12:34'),
(69, 'book_appointment', 'new_patient', 'Kristy', 'Keates', NULL, 'kristykeates@gmail.com', '5192781870', '1983-02-16', NULL, '1-8120 Main St', 'Everett', 'Ontario', 'L0M 1J0', NULL, '2026-02-27', 'Noon', 'Injury to shoulder previously affected by frozen shoulder and bursitis', '104.158.130.103', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-27 14:44:29'),
(70, 'book_appointment', 'returning_patient', 'Darrien', 'Ponciano', NULL, 'jessicac_83@live.com', '647-882-8996', '2011-03-26', NULL, '20 gallagher crescent', 'New Tecumseth', 'ON', 'L9R 0p3', NULL, '2026-02-27', 'Morning', 'Looking for something this morning', '76.67.69.53', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-02-27 20:15:29'),
(71, 'book_appointment', 'new_patient', 'David', 'Jackson', NULL, 'davidjamesjackson@outlook.com', '7053055312', '1994-05-05', NULL, '7 Seaforth street', 'Barrie', 'Ontario', 'L4N3H7', NULL, '2026-03-03', 'Afternoon', 'Seeking new massage therapist.', '209.29.99.154', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-01 09:05:42'),
(72, 'book_appointment', 'new_patient', 'Helen', 'Stamatopoulos', NULL, 'hstamatopoulos@hotmail.com', '4168904140', '1974-10-16', NULL, '6A Elizabeth Street', 'Cookstown', 'Ontario', 'L0L1L0', NULL, '2026-03-09', 'Morning', 'Good morning. I am struggling with severe lower back pain for over a year. I was told physiotherapy is a good option. Just looking to book an appointment to get assessed. Thank you!', '99.232.212.46', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/29.0 Chrome/136.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-09 21:39:50'),
(73, 'book_appointment', 'new_patient', 'CHERYL', 'BULPIT HICKMAN', NULL, 'cbulpin606@rogers.com', '4167299594', '1962-02-19', NULL, '13 HENDERSON CRES, ALLISTON, ON, L9R 1Y3', 'Alliston', 'ON', 'L9R 1Y3', NULL, '2026-03-18', 'Morning,Noon,Afternoon,Evening', 'You can call anytime, that is my cell number \r\nI work from 8:30 until 4:30 5 days a week so I would need appointments for 5:00 or after. Any weekdays', '72.139.38.130', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-17 01:50:44'),
(74, 'book_appointment', 'new_patient', 'Matej', 'Balen', NULL, 'mfbemotion@gmail.com', '7056237987', '1990-04-11', NULL, '48 Pine Park Blvd', 'Everett', 'ON', 'L0M1J0', NULL, '2026-03-20', 'Morning,Noon,Afternoon', 'Hurt my shoulder at work. Went to hospital. They prescribed physiotherapy. Return to work Monday looking for appt before than. I have insurance.', '99.232.214.175', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-20 02:11:06'),
(75, 'book_appointment', 'new_patient', 'Anna', 'Rocha', NULL, 'annrocha72@gmail.com', '416-833-8579', '1972-10-25', NULL, '29 dowling rd', 'Alliston', 'On', 'L9R0P8', NULL, '2026-03-21', 'Morning', 'Looking to see if you direct bill all appointments initially?', '149.248.98.167', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-20 03:54:57'),
(76, 'book_appointment', 'new_patient', 'Barry', 'Mintz', NULL, 'barry662436@hotmail.ca', '4168872469', '2001-11-12', NULL, '93 liddard st', 'Bracebrigde', 'Ontario', 'P1L1M5', NULL, '2026-03-26', 'Morning,Evening', 'I work night shift if I don’t answer just leave me a voicemail thank you', '99.232.211.172', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-24 21:03:05'),
(77, 'book_appointment', 'new_patient', 'Nicholas', 'Elibox', NULL, 'bajan600@gmail.com', '4163577102', '1982-11-09', NULL, '90 Holt Dr', 'Alliston', 'ON', 'L9R 0R2', NULL, '2026-03-26', 'Morning', 'Hi, I would like to make an appointment for tomorrow for my left knew lcl sprain. WSIB claim', '99.232.201.63', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-25 21:58:45'),
(78, 'book_appointment', 'new_patient', 'Steve', 'Cousins', NULL, 'stevecousins35@gmail.com', '7058179934', '1985-12-18', NULL, '228 Shephard ave', 'Alliston', 'ON', 'L9R0K2', NULL, '2026-04-21', 'Morning', 'Looking for rmt treatment on my whole body basically for up keep on my body.', '99.232.207.23', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-28 01:44:00'),
(79, 'book_appointment', 'new_patient', 'Oleg', 'Levytskyy', NULL, 'o.levytskyy@gmail.com', '6478660943', '1984-11-07', NULL, '69 Warman Street', 'Alliston', 'Ontario', 'L9R 0C1', NULL, '2026-04-01', 'Evening', 'Hello, I am looking to book appointment with Yaroslav for lower back pain check and shoulder pain. My availability is in the evening if it’s possible.', '172.226.162.87', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.4 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-28 03:03:00'),
(80, 'book_appointment', 'returning_patient', 'Sandy', 'Casaluce', NULL, 'scasaluce@yahoo.ca', '416-456-6373', '1969-05-28', NULL, '105 Henderson Cres', 'Alliston', 'ON', 'L9R 1Y5', NULL, '2026-03-30', 'Evening', 'Diagnosed with TMJ.', '104.28.133.24', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-28 03:22:23'),
(81, 'book_appointment', 'new_patient', 'Glenn', 'Lindsay', NULL, 'gclindsay310@gmail.com', '7054400178', '1963-07-17', NULL, '5101 Concession 4', 'Everett', 'Ontario', 'L0M1J0', NULL, '2026-04-01', 'Noon', 'Hi , I would like to book an appointment for therapy on my right shoulder.', '66.225.164.101', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-03-31 20:56:43'),
(82, 'book_appointment', 'new_patient', 'Meynard', 'Cacho', NULL, 'meynardcacho@gmail.com', '7054406714', '1997-10-14', NULL, '4662 Adjala Tecumseth Townline', 'Alliston', 'ON', 'L9R 1V4', NULL, '2026-04-07', 'Morning,Noon,Afternoon,Evening', 'Pain around knee when stretching.', '174.91.155.218', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-02 08:28:58'),
(83, 'book_appointment', 'new_patient', 'Kyle', 'Hurley', NULL, 'kg.hurley17@gmail.com', '7053514041', '1991-07-03', NULL, '20 Mason Drive', 'Alliston', 'ON', 'L9R0M1', NULL, '2026-04-06', 'Morning,Noon,Afternoon,Evening', 'Ankle / torn tendon', '72.143.192.184', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-03 08:19:18'),
(84, 'contact_us', NULL, NULL, NULL, 'John Elvidge', 'johnelvidge@royallepage.ca', '519-270-2726', NULL, 'Concussions: Base Line Testing', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Hi, I\'m the Head Coach of the New Tecumseth U18AA IceCats in the New Tecumseth Girls Hockey Association. I would like to discuss the possibility of getting concussion base line testing done for my players prior to the start of next season. I have 19 players that would need to be tested. I look forward to hearing from you.\r\n\r\nJohn Elvidge, Head Coach NT IceCats U18AA', '147.194.17.97', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 'https://allistonphysiotherapy.com/cms/public/contact-us', '2026-04-04 05:53:40'),
(85, 'book_appointment', 'returning_patient', 'Barbara', 'Calwell', NULL, 'bcalwell46@gmail.com', '7056234924', '1970-02-22', NULL, '139 Arnold crescent', 'Alliston', 'ON', 'L9R0T4', NULL, '2026-04-08', 'Afternoon', 'I would like to schedule an appointment', '99.232.181.173', 'Mozilla/5.0 (iPhone; CPU iPhone OS 26_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/414.0.890628820 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-06 07:53:56'),
(86, 'book_appointment', 'new_patient', 'Marnie', 'Cousins', NULL, 'stevecousins35@gmail.com', '7058179934', '1988-05-26', NULL, '228 Shephard ave', 'Alliston', 'ON', 'L9R 0K2', NULL, '2026-04-08', 'Morning', 'Looking for a morning massage on Wednesday april 8th for my wife as a surprise. Please call me back ASAP.\r\n\r\nThanks,\r\nSteve Cousins', '99.232.207.23', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-06 08:24:26'),
(87, 'book_appointment', 'new_patient', 'Sheri', 'Norman', NULL, 'sheri.norman@icloud.com', '(705) 795-5440', '1972-03-23', NULL, '6183 9th line', 'Egbert', 'ontario', 'L0L 1N0', NULL, '2026-04-13', 'Morning,Noon,Afternoon', 'Good morning,\r\nI am looking for physio of knee and shoulder related to sports injury.', '143.105.15.102', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-07 20:09:10'),
(88, 'book_appointment', 'new_patient', 'Melanie', 'Maas', NULL, 'melaniemaas44@gmail.com', '6475883630', '1980-01-05', NULL, '26 Michaelis St', 'New Tecumseth', 'ON', 'L9R0L8', NULL, '2026-04-08', 'Noon', 'Left lateral knee pain with running. Need assessment and treatment to get running again', '192.0.235.43', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-08 21:27:15'),
(89, 'contact_us', NULL, NULL, NULL, 'Susan Kirby', 'suemarycan@gmail.com', '705 220 7650', NULL, 'Tinnitus Treatments?', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Do you have services for tinnitus, (ringing in the ears)?\r\nI have been diagnosed with tinnitus, caused by crystals in my ears.', '99.232.202.207', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0', 'https://www.allistonphysiotherapy.com/cms/public/contact-us', '2026-04-09 02:28:48'),
(90, 'book_appointment', 'new_patient', 'Catalina', 'Somesan', NULL, 'catalina.somesan@hotmail.com', '4167164861', '1975-12-21', NULL, '25 Shephard Avenue', 'Alliston', 'Ontario', 'L9R2E8', NULL, '2026-04-13', 'Morning,Noon,Afternoon,Evening', 'Hello.', '172.226.16.54', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-09 02:51:10');
INSERT INTO `tasap_enquiry` (`enq_id`, `type`, `patient_type`, `f_name`, `l_name`, `name`, `email`, `mobile`, `dob`, `subject`, `address`, `city`, `state`, `postal_code`, `service_type`, `preferred_date`, `best_time_to_call`, `message`, `ip_address`, `user_agent`, `page_ref`, `created_at`) VALUES
(91, 'book_appointment', 'new_patient', 'Jennifer', 'Jackson', NULL, 'aesthetician_22@outlook.com', '705-434-8394', '1987-08-22', NULL, '66 Elizabeth street', 'Alliston', 'ON', 'L9R1L7', NULL, '2026-04-13', 'Morning,Noon,Afternoon,Evening', 'My lower back began to hurt last Tuesday, got a bit better and then much worse. Cannot walk, sit or stand without extreme pain. In need of care/advice on what to do to get better.', '99.232.218.92', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-13 02:48:26'),
(92, 'book_appointment', 'new_patient', 'Zeiss', 'Dalafu', NULL, 'dalafuz@gmail.com', '6474505113', '1983-12-19', NULL, '61 Dunning Drive', 'Alliston', 'ON', 'L9R0B6', NULL, '2026-04-13', 'Morning,Noon,Afternoon', 'Lt shoulder pain due to a work injury.', '199.119.233.250', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-13 22:18:36'),
(93, 'book_appointment', 'returning_patient', 'Erin', 'Arsenault', NULL, 'erin155@icloud.com', '2897953239', '2000-07-09', NULL, '191 Ellwood Drive West', 'Bolton', 'ON', 'L5E 4W6', NULL, '2026-04-21', 'Morning,Noon,Afternoon,Evening', 'Anything open after 2:30 ?', '162.10.22.30', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-21 19:05:08'),
(94, 'book_appointment', 'new_patient', 'Geoff', 'Menini', NULL, 'geoff_menini@hotmail.com', '7057253476', '1984-04-18', NULL, '18 Albert St e', 'Alliston', 'On', 'L9R1J4', NULL, '2026-04-27', 'Morning,Noon,Afternoon,Evening', 'I have a form from the doctor for my side. Muscle issue', '76.68.135.159', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-23 07:38:41'),
(95, 'book_appointment', 'new_patient', 'Nora', 'Freestone', NULL, 'nora.freestone@gmail.com', '2893388129', '1990-10-09', NULL, '44 , John W Taylor Ave', 'Alliston', 'ON', 'L9R0B6', NULL, '2026-04-27', 'Morning,Noon,Afternoon', 'I sprained my ankle last Thursday. Hoping to get it checked out. I can do an appointment anytime this or next week between 9-3', '104.28.133.0', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.4 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-27 20:20:04'),
(96, 'book_appointment', 'new_patient', 'Steve', 'Wilson', NULL, 'mcmliv54@yahoo.ca', '905-717-0828', '1954-05-14', NULL, '17 Malibu Manor', 'Alliston', 'ON', 'L9R2B9', NULL, '2026-05-08', 'Morning,Noon', 'Had an incident 3 weeks ago. Hospital thought I tore my meniscus.  Hsd xrays and ultrasound. Wondered if physio might help', '99.232.173.213', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Mobile Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-04-28 02:11:02'),
(97, 'book_appointment', 'new_patient', 'William', 'Dickinson', NULL, 'linniebar115@gmail.com', '416-4500344', '2009-05-21', NULL, '115 Main St W', 'Beeton', 'ON', 'L0G 1A0', NULL, '2026-05-11', 'Afternoon', 'My son has lower back and suspect sciatica.  He is a catcher.  We want to give him techniques for prevention and also treatment for when he has pain. He goes to school at Banting and would like appointment after 330 pm.', '99.232.218.71', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'https://allistonphysiotherapy.com/cms/public/book-appointment', '2026-05-04 03:16:39'),
(98, 'book_appointment', 'new_patient', 'Amarinder', 'Mehta', NULL, 'themehtasfamily@gmail.com', '6474505050', '2026-05-07', NULL, '102 Arnold Cres', 'New Tecumseth', 'ON', 'L9R 0T5', NULL, '2026-05-04', 'Evening', 'Hi. I have an issue with my right mid arm. It burns and tightens right by my elbow.', '146.75.188.2', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.5 Mobile/15E148 Safari/604.1', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-05-04 08:57:46'),
(99, 'book_appointment', 'returning_patient', 'Cheryl', 'Bulpit-Hickman', NULL, 'cbulpin606@rogers.com', '4167299594', '1962-02-19', NULL, '13 Henderson Cres', 'Alliston', 'Ontario', 'L9R1Y3', NULL, '2026-05-05', 'Morning,Afternoon', 'Do you have an opening tonight around 5:00pm', '72.139.38.130', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-05-05 19:23:11'),
(100, 'book_appointment', 'new_patient', 'Georgianna', 'Stewart', NULL, 'annarvstewart@gmail.com', '2263431985', '1997-02-11', NULL, '4 Artisan Lane', 'Alliston', 'ON', 'L9R 2G1', NULL, '2026-05-07', 'Afternoon', 'My wrist wrist hurts when I try to pick up things and when I twist it.', '99.232.170.144', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-05-06 00:15:16'),
(101, 'book_appointment', 'new_patient', 'Saverio', 'Torchia', NULL, 'saveriotorchia@gmail.com', '6472416376', '1997-06-24', NULL, '91 Kingsmere Crescent', 'Alliston', 'Ontario', 'L9R 0K6', NULL, '2026-05-06', 'Morning,Noon,Afternoon,Evening', 'I recently discovered I have a partially torn MCL. I received ultrasound results and have an MRI being booked soon. I wanted to start Physio now, to help jump start the healing process. Please let me know what is required.', '198.103.184.85', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0', 'https://www.allistonphysiotherapy.com/cms/public/book-appointment', '2026-05-06 17:49:58');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_event_types`
--

CREATE TABLE `tasap_event_types` (
  `evnt_typ_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `slug` varchar(128) NOT NULL,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_event_types`
--

INSERT INTO `tasap_event_types` (`evnt_typ_id`, `title`, `slug`, `c_order`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Massage Therapy', 'massage-therapy', 1, 1, 1, 0, '2025-03-18 12:06:07', NULL),
(2, 'Physiotherapy', 'physiotherapy', 2, 1, 1, 0, '2025-03-18 12:06:07', NULL),
(3, 'Rehabilitation', 'rehabilitation', 3, 1, 1, 0, '2025-03-18 12:06:07', NULL),
(4, 'Sports Injury', 'sports-injury', 4, 1, 1, 0, '2025-03-18 12:06:07', NULL),
(5, 'Acupuncture', 'acupuncture', 5, 1, 1, 0, '2025-03-18 12:06:07', NULL),
(6, 'Custom Orthotics/Braces', 'custom-orthotics-braces', 6, 1, 1, 0, '2025-03-18 12:06:07', NULL),
(7, 'TMJ Treatments', 'TMJ-treatments', 7, 2, 1, 0, '2025-03-18 12:06:07', NULL),
(8, 'Others', 'others', 8, 1, 1, 0, '2025-03-18 12:06:07', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_failed_jobs`
--

CREATE TABLE `tasap_failed_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `uuid` varchar(255) NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_gallery`
--

CREATE TABLE `tasap_gallery` (
  `gal_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `slug` varchar(128) NOT NULL,
  `descp` text DEFAULT NULL,
  `media_id` int(11) NOT NULL DEFAULT 0,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_gallery`
--

INSERT INTO `tasap_gallery` (`gal_id`, `title`, `slug`, `descp`, `media_id`, `c_order`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Home Banner Gallery', 'home-banner-gallery', NULL, 0, 1, 1, 1, 1, '2025-03-17 08:57:11', '2025-03-17 08:57:11'),
(2, 'Our Facility', 'our-facility', NULL, 0, 2, 1, 1, 1, '2025-07-08 17:57:50', '2025-07-08 17:57:50');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_gallery_data`
--

CREATE TABLE `tasap_gallery_data` (
  `gal_dt_id` int(10) UNSIGNED NOT NULL,
  `gal_id` int(11) NOT NULL DEFAULT 0,
  `title` varchar(128) DEFAULT NULL,
  `gallery_data_type` enum('','i','v') NOT NULL COMMENT 'i=Image and v=Video',
  `descp` text DEFAULT NULL,
  `media_id` int(11) NOT NULL DEFAULT 0,
  `big_media_id` int(11) NOT NULL DEFAULT 0,
  `video_from` enum('','l','y') DEFAULT NULL COMMENT 'l=Local and y=Youtube',
  `video_file` varchar(128) DEFAULT NULL,
  `youtube_share_link` varchar(128) DEFAULT NULL,
  `video_cover_image` varchar(128) DEFAULT NULL,
  `external_link` varchar(255) DEFAULT NULL,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_gallery_data`
--

INSERT INTO `tasap_gallery_data` (`gal_dt_id`, `gal_id`, `title`, `gallery_data_type`, `descp`, `media_id`, `big_media_id`, `video_from`, `video_file`, `youtube_share_link`, `video_cover_image`, `external_link`, `c_order`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 'Physiotherapy', 'i', '<div class=\"slide-text\">Physiotherapy</div>', 38, 38, NULL, NULL, NULL, NULL, '', 1, 1, 1, 1, '2025-03-17 09:01:11', '2025-03-17 09:01:11'),
(2, 1, 'Sports Injury', 'i', '<div class=\"slide-text\">Sports Injury</div>', 39, 39, NULL, NULL, NULL, NULL, '', 2, 1, 1, 1, '2025-03-17 09:02:03', '2025-03-17 09:02:03'),
(3, 1, 'Acupuncture', 'i', '<div class=\"slide-text\">Acupuncture</div>', 40, 40, NULL, NULL, NULL, NULL, '', 3, 1, 1, 1, '2025-03-17 09:03:04', '2025-03-17 09:03:04'),
(4, 1, 'Custom Orthotics / Braces', 'i', '<div class=\"slide-text\">Custom Orthotics / Braces</div>', 41, 41, NULL, NULL, NULL, NULL, '', 4, 1, 1, 1, '2025-03-17 09:04:26', '2025-03-17 09:04:26'),
(5, 1, 'Massage Therapy', 'i', '<div class=\"slide-text\">Massage Therapy</div>', 42, 42, NULL, NULL, NULL, NULL, '', 5, 1, 1, 1, '2025-03-17 09:05:39', '2025-03-17 09:05:39'),
(6, 2, NULL, 'i', NULL, 90, 90, NULL, NULL, NULL, NULL, '', 1, 1, 1, 1, '2025-07-08 19:29:07', '2025-07-08 19:29:07'),
(7, 2, NULL, 'i', NULL, 91, 91, NULL, NULL, NULL, NULL, '', 2, 1, 1, 1, '2025-07-08 19:29:42', '2025-07-08 19:29:42'),
(8, 2, NULL, 'i', NULL, 92, 92, NULL, NULL, NULL, NULL, '', 3, 1, 1, 1, '2025-07-08 19:30:00', '2025-07-08 19:30:00'),
(9, 2, NULL, 'i', NULL, 93, 93, NULL, NULL, NULL, NULL, '', 4, 1, 1, 1, '2025-07-08 19:30:25', '2025-07-08 19:30:25'),
(10, 2, NULL, 'i', NULL, 94, 94, NULL, NULL, NULL, NULL, '', 5, 1, 1, 1, '2025-07-08 19:30:44', '2025-07-08 19:30:44'),
(11, 2, NULL, 'i', NULL, 95, 95, NULL, NULL, NULL, NULL, '', 6, 1, 1, 1, '2025-07-08 19:31:06', '2025-07-08 19:31:06'),
(12, 2, NULL, 'i', NULL, 96, 96, NULL, NULL, NULL, NULL, '', 7, 1, 1, 1, '2025-07-08 19:31:39', '2025-07-08 19:31:39'),
(13, 2, NULL, 'i', NULL, 97, 97, NULL, NULL, NULL, NULL, '', 8, 1, 1, 1, '2025-07-08 19:31:57', '2025-07-08 19:31:57'),
(14, 2, NULL, 'i', NULL, 98, 98, NULL, NULL, NULL, NULL, '', 9, 1, 1, 1, '2025-07-08 19:32:19', '2025-07-08 19:32:19');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_health_questionnaire`
--

CREATE TABLE `tasap_health_questionnaire` (
  `id` int(11) NOT NULL,
  `patient_name` varchar(255) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `doctor_name` varchar(255) DEFAULT NULL,
  `doctor_phone` varchar(50) DEFAULT NULL,
  `has_heart_problems` tinyint(4) DEFAULT NULL,
  `has_thyroid_problems` tinyint(4) DEFAULT NULL,
  `has_blood_pressure` tinyint(4) DEFAULT NULL,
  `taking_medications` tinyint(4) DEFAULT NULL,
  `medication_list` text DEFAULT NULL,
  `has_arthritis` tinyint(4) DEFAULT NULL,
  `has_diabetes` tinyint(4) DEFAULT NULL,
  `has_cancer` tinyint(4) DEFAULT NULL,
  `has_broken_bone` tinyint(4) DEFAULT NULL,
  `has_metal_fixations` tinyint(4) DEFAULT NULL,
  `do_you_smoke` tinyint(4) DEFAULT NULL,
  `smoke_much` varchar(255) DEFAULT NULL,
  `has_abdominal_problems` tinyint(4) DEFAULT NULL,
  `has_previous_surgeries` tinyint(4) DEFAULT NULL,
  `previous_surgeries_list` text DEFAULT NULL,
  `is_pregnant` tinyint(4) DEFAULT NULL,
  `has_car_accident` tinyint(4) DEFAULT NULL,
  `car_accident_date` date DEFAULT NULL,
  `has_allergies` tinyint(4) DEFAULT NULL,
  `has_asthma` tinyint(4) DEFAULT NULL,
  `has_other_health_problems` tinyint(4) DEFAULT NULL,
  `has_other_reason` tinyint(4) DEFAULT NULL,
  `last_physiotherapy_visit` varchar(255) DEFAULT NULL,
  `last_physiotherapy_location` varchar(255) DEFAULT NULL,
  `emergency_contact_person` varchar(255) DEFAULT NULL,
  `emergency_phone` varchar(50) DEFAULT NULL,
  `client_signature` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tasap_health_questionnaire`
--

INSERT INTO `tasap_health_questionnaire` (`id`, `patient_name`, `date`, `doctor_name`, `doctor_phone`, `has_heart_problems`, `has_thyroid_problems`, `has_blood_pressure`, `taking_medications`, `medication_list`, `has_arthritis`, `has_diabetes`, `has_cancer`, `has_broken_bone`, `has_metal_fixations`, `do_you_smoke`, `smoke_much`, `has_abdominal_problems`, `has_previous_surgeries`, `previous_surgeries_list`, `is_pregnant`, `has_car_accident`, `car_accident_date`, `has_allergies`, `has_asthma`, `has_other_health_problems`, `has_other_reason`, `last_physiotherapy_visit`, `last_physiotherapy_location`, `emergency_contact_person`, `emergency_phone`, `client_signature`, `created_at`, `updated_at`) VALUES
(1, 'Ubes Aslam 1', '2026-05-01', 'Dr. Rajesh Khanna 1', '7987084262', 2, 2, 2, 1, 'Test 1', 2, 2, 2, 2, 2, 1, '5', 2, 1, 'One, Two', 2, 1, '2026-05-05', 2, 2, 2, 2, 'Sunday 1', 'Bhopal 1', 'Owais Aslam 1', '9098710665', 'Ubes 1', '2026-05-14 13:02:06', '2026-05-14 14:02:04'),
(2, 'testing suganya', '2004-05-07', 'demo', '4165432123', 1, 2, 1, 1, 'demo', 1, 1, 2, 2, 1, 1, 'demo', 1, 2, NULL, 1, 1, NULL, 2, 1, 2, 1, 'demo', 'demo', 'demo', '4167890987', 'demo', '2026-05-15 13:23:06', '2026-05-15 13:23:06');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_informed_consent_physiotherapy_treatment`
--

CREATE TABLE `tasap_informed_consent_physiotherapy_treatment` (
  `id` int(11) NOT NULL,
  `physiotherapists_name` varchar(255) DEFAULT NULL,
  `physiotherapists_signature` varchar(255) DEFAULT NULL,
  `patient_name` varchar(255) DEFAULT NULL,
  `patient_signature` varchar(255) DEFAULT NULL,
  `witness_signature` varchar(255) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tasap_informed_consent_physiotherapy_treatment`
--

INSERT INTO `tasap_informed_consent_physiotherapy_treatment` (`id`, `physiotherapists_name`, `physiotherapists_signature`, `patient_name`, `patient_signature`, `witness_signature`, `date`, `created_at`, `updated_at`) VALUES
(1, 'Dr. Rajesh Khanna 1', 'Rajesh 1', 'Owais Aslam 1', 'Owais 1', 'Ubes 1', '2026-05-14', '2026-05-14 13:05:36', '2026-05-14 14:06:13'),
(2, 'demo', 'demo', 'demo', 'demo', 'demo', '2026-05-12', '2026-05-15 13:28:57', '2026-05-15 13:28:57');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_jobs`
--

CREATE TABLE `tasap_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `queue` varchar(255) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) UNSIGNED NOT NULL,
  `reserved_at` int(10) UNSIGNED DEFAULT NULL,
  `available_at` int(10) UNSIGNED NOT NULL,
  `created_at` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_job_batches`
--

CREATE TABLE `tasap_job_batches` (
  `id` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `total_jobs` int(11) NOT NULL,
  `pending_jobs` int(11) NOT NULL,
  `failed_jobs` int(11) NOT NULL,
  `failed_job_ids` longtext NOT NULL,
  `options` mediumtext DEFAULT NULL,
  `cancelled_at` int(11) DEFAULT NULL,
  `created_at` int(11) NOT NULL,
  `finished_at` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_media`
--

CREATE TABLE `tasap_media` (
  `media_id` int(10) UNSIGNED NOT NULL,
  `path` varchar(128) DEFAULT NULL,
  `mime_type` varchar(100) NOT NULL,
  `media_info` text DEFAULT NULL,
  `title` varchar(128) DEFAULT NULL,
  `alt` varchar(128) DEFAULT NULL,
  `descp` text DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_media`
--

INSERT INTO `tasap_media` (`media_id`, `path`, `mime_type`, `media_info`, `title`, `alt`, `descp`, `status`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, '1742208614-logo.png', 'image/png', '{\"filename\":\"logo.png\",\"extension\":\"png\",\"size\":70701,\"type\":\"image\\/png\",\"width\":448,\"height\":150}', 'logo', 'logo', NULL, 1, 1, '2025-03-17 05:20:14', '2025-03-17 05:20:14'),
(2, '1751876605-hd-team.jpg', 'image/jpeg', '{\"filename\":\"breadcrumb.jpg\",\"extension\":\"jpg\",\"size\":323925,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'breadcrumb', 'breadcrumb', NULL, 1, 1, '2025-03-17 06:43:44', '2025-07-07 15:23:25'),
(3, '1751875017-hd-team.jpg', 'image/jpeg', '{\"filename\":\"hd-team.jpg\",\"extension\":\"jpg\",\"size\":241800,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Our team', 'Our team', NULL, 1, 1, '2025-03-17 06:49:56', '2025-07-07 14:56:57'),
(4, '1742214293-1.jpg', 'image/jpeg', '{\"filename\":\"1.jpg\",\"extension\":\"jpg\",\"size\":111735,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Ruby Dhillon', 'Ruby Dhillon', NULL, 1, 1, '2025-03-17 06:54:53', '2025-03-17 06:55:10'),
(5, '1742217377-10.jpg', 'image/jpeg', '{\"filename\":\"10.jpg\",\"extension\":\"jpg\",\"size\":121986,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '10', '10', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:46:17'),
(6, '1742217377-9.jpg', 'image/jpeg', '{\"filename\":\"9.jpg\",\"extension\":\"jpg\",\"size\":145468,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Razeena', 'Razeena', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:55:08'),
(7, '1742217377-7.jpg', 'image/jpeg', '{\"filename\":\"7.jpg\",\"extension\":\"jpg\",\"size\":151609,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Chandni', 'Chandni', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:52:09'),
(8, '1742217377-8.jpg', 'image/jpeg', '{\"filename\":\"8.jpg\",\"extension\":\"jpg\",\"size\":148391,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Twisha Patel', 'Twisha Patel', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:53:06'),
(9, '1742217377-5.jpg', 'image/jpeg', '{\"filename\":\"5.jpg\",\"extension\":\"jpg\",\"size\":132954,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Vinayak', 'Vinayak', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:48:17'),
(10, '1742217377-6.jpg', 'image/jpeg', '{\"filename\":\"6.jpg\",\"extension\":\"jpg\",\"size\":165007,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Esther', 'Esther', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:50:49'),
(11, '1742217377-3.jpg', 'image/jpeg', '{\"filename\":\"3.jpg\",\"extension\":\"jpg\",\"size\":122634,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '3', '3', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:46:17'),
(12, '1742217377-2.jpg', 'image/jpeg', '{\"filename\":\"2.jpg\",\"extension\":\"jpg\",\"size\":137909,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Harmandeep Dhillon', 'Harmandeep Dhillon', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:46:36'),
(13, '1742217377-4.jpg', 'image/jpeg', '{\"filename\":\"4.jpg\",\"extension\":\"jpg\",\"size\":104976,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', 'Yaroslav Bilchenko', 'Yaroslav Bilchenko', NULL, 1, 1, '2025-03-17 07:46:17', '2025-03-17 07:47:32'),
(14, '1751876552-hd-service.jpg', 'image/jpeg', '{\"filename\":\"hd-service.jpg\",\"extension\":\"jpg\",\"size\":271574,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'services', 'services', NULL, 1, 1, '2025-03-17 07:57:03', '2025-07-07 15:22:32'),
(15, '1742218125-ser1.jpg', 'image/jpeg', '{\"filename\":\"ser1.jpg\",\"extension\":\"jpg\",\"size\":313384,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Vestibular Rehabilitation', 'Vestibular Rehabilitation', NULL, 1, 1, '2025-03-17 07:58:45', '2025-03-17 08:07:41'),
(16, '1742218161-ser4.jpg', 'image/jpeg', '{\"filename\":\"ser4.jpg\",\"extension\":\"jpg\",\"size\":103057,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'TMJ Treatments', 'TMJ Treatments', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:09:35'),
(17, '1742218161-ser6.jpg', 'image/jpeg', '{\"filename\":\"ser6.jpg\",\"extension\":\"jpg\",\"size\":375344,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Manipulation', 'Manipulation', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:12:55'),
(18, '1742218161-ser3.jpg', 'image/jpeg', '{\"filename\":\"ser3.jpg\",\"extension\":\"jpg\",\"size\":209711,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Physiotherapy', 'Physiotherapy', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:00:50'),
(19, '1742218161-ser8.jpg', 'image/jpeg', '{\"filename\":\"ser8.jpg\",\"extension\":\"jpg\",\"size\":173596,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Acupuncture', 'Acupuncture', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:13:53'),
(20, '1742218161-ser5.jpg', 'image/jpeg', '{\"filename\":\"ser5.jpg\",\"extension\":\"jpg\",\"size\":265516,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Laser Therapy', 'Laser Therapy', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:11:24'),
(21, '1742218161-ser7.jpg', 'image/jpeg', '{\"filename\":\"ser7.jpg\",\"extension\":\"jpg\",\"size\":233615,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Sports Injury', 'Sports Injury', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:14:38'),
(22, '1742218161-ser9.jpg', 'image/jpeg', '{\"filename\":\"ser9.jpg\",\"extension\":\"jpg\",\"size\":352545,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Shock Wave Therapy', 'Shock Wave Therapy', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:10:27'),
(23, '1742218161-ser10.jpg', 'image/jpeg', '{\"filename\":\"ser10.jpg\",\"extension\":\"jpg\",\"size\":233350,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Pre and Post Surgical Physiotherapy', 'Pre and Post Surgical Physiotherapy', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:16:48'),
(24, '1742218161-ser11.jpg', 'image/jpeg', '{\"filename\":\"ser11.jpg\",\"extension\":\"jpg\",\"size\":207442,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Polar Care Cube Therapy', 'Polar Care Cube Therapy', NULL, 1, 1, '2025-03-17 07:59:21', '2025-03-17 08:18:52'),
(25, '1742218187-ser13.jpg', 'image/jpeg', '{\"filename\":\"ser13.jpg\",\"extension\":\"jpg\",\"size\":255681,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Home Visits', 'Home Visits', NULL, 1, 1, '2025-03-17 07:59:47', '2025-03-17 08:19:29'),
(26, '1742218188-ser12.jpg', 'image/jpeg', '{\"filename\":\"ser12.jpg\",\"extension\":\"jpg\",\"size\":411548,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Motor Vehicle Accident', 'Motor Vehicle Accident', NULL, 1, 1, '2025-03-17 07:59:48', '2025-03-17 08:15:25'),
(27, '1742218188-ser16.jpg', 'image/jpeg', '{\"filename\":\"ser16.jpg\",\"extension\":\"jpg\",\"size\":189468,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Concussion Management', 'Concussion Management', NULL, 1, 1, '2025-03-17 07:59:48', '2025-03-17 08:08:31'),
(28, '1742218188-ser15.jpg', 'image/jpeg', '{\"filename\":\"ser15.jpg\",\"extension\":\"jpg\",\"size\":580927,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'ser15', 'ser15', NULL, 1, 1, '2025-03-17 07:59:48', '2025-03-17 07:59:48'),
(29, '1742218188-ser14.jpg', 'image/jpeg', '{\"filename\":\"ser14.jpg\",\"extension\":\"jpg\",\"size\":307298,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'GLA:D', 'GLA:D', NULL, 1, 1, '2025-03-17 07:59:48', '2025-03-17 08:17:44'),
(30, '1742218188-ser17.jpg', 'image/jpeg', '{\"filename\":\"ser17.jpg\",\"extension\":\"jpg\",\"size\":261143,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Custom Orthotics/Braces', 'Custom Orthotics/Braces', NULL, 1, 1, '2025-03-17 07:59:48', '2025-03-17 08:20:57'),
(31, '1742218316-3.jpg', 'image/jpeg', '{\"filename\":\"3.jpg\",\"extension\":\"jpg\",\"size\":163177,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', 'Physiotherapy', 'Physiotherapy', NULL, 1, 1, '2025-03-17 08:01:56', '2025-03-17 08:02:19'),
(32, '1742218359-3.png', 'image/png', '{\"filename\":\"3.png\",\"extension\":\"png\",\"size\":24757,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', 'Physiotherapy', 'Physiotherapy', NULL, 1, 1, '2025-03-17 08:02:39', '2025-03-17 08:02:48'),
(33, '1742218584-ser2.jpg', 'image/jpeg', '{\"filename\":\"ser2.jpg\",\"extension\":\"jpg\",\"size\":280124,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Massage Therapy', 'Massage Therapy', NULL, 1, 1, '2025-03-17 08:06:24', '2025-03-17 08:06:39'),
(34, '1742219616-patient.jpg', 'image/jpeg', '{\"filename\":\"patient.jpg\",\"extension\":\"jpg\",\"size\":122835,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'New Patient Form', 'New Patient Form', NULL, 1, 1, '2025-03-17 08:23:36', '2025-03-17 08:23:45'),
(35, '1742219778-body.jpg', 'image/jpeg', '{\"filename\":\"body.jpg\",\"extension\":\"jpg\",\"size\":204844,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Body Conditions', 'Body Conditions', NULL, 1, 1, '2025-03-17 08:26:18', '2025-03-17 08:26:25'),
(36, '1742219884-contact.jpg', 'image/jpeg', '{\"filename\":\"contact.jpg\",\"extension\":\"jpg\",\"size\":263991,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'contact', 'contact', NULL, 1, 1, '2025-03-17 08:28:04', '2025-03-17 08:28:04'),
(37, '1742220374-appointment.jpg', 'image/jpeg', '{\"filename\":\"appointment.jpg\",\"extension\":\"jpg\",\"size\":319673,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'Book appointment', 'Book appointment', NULL, 1, 1, '2025-03-17 08:36:14', '2025-03-17 08:36:27'),
(38, '1742221724-1-61.jpg', 'image/jpeg', '{\"filename\":\"1-61.jpg\",\"extension\":\"jpg\",\"size\":321521,\"type\":\"image\\/jpeg\",\"width\":1660,\"height\":750}', 'Physiotherapy Home Banner', 'Physiotherapy Home Banner', NULL, 1, 1, '2025-03-17 08:58:44', '2025-03-17 08:59:42'),
(39, '1742221881-ban3.jpg', 'image/jpeg', '{\"filename\":\"ban3.jpg\",\"extension\":\"jpg\",\"size\":446151,\"type\":\"image\\/jpeg\",\"width\":1660,\"height\":750}', 'Sports Injury banner', 'Sports Injury banner', NULL, 1, 1, '2025-03-17 09:01:21', '2025-03-17 09:04:13'),
(40, '1742221952-ban4.jpg', 'image/jpeg', '{\"filename\":\"ban4.jpg\",\"extension\":\"jpg\",\"size\":263835,\"type\":\"image\\/jpeg\",\"width\":1660,\"height\":750}', 'Acupuncture banner', 'Acupuncture banner', NULL, 1, 1, '2025-03-17 09:02:32', '2025-03-17 09:04:09'),
(41, '1742222021-ban5.jpg', 'image/jpeg', '{\"filename\":\"ban5.jpg\",\"extension\":\"jpg\",\"size\":372471,\"type\":\"image\\/jpeg\",\"width\":1660,\"height\":750}', 'Custom Orthotics / Braces Banner', 'Custom Orthotics / Braces Banner', NULL, 1, 1, '2025-03-17 09:03:41', '2025-03-17 09:04:00'),
(42, '1742222113-2-61-1.jpg', 'image/jpeg', '{\"filename\":\"2-61-1.jpg\",\"extension\":\"jpg\",\"size\":512098,\"type\":\"image\\/jpeg\",\"width\":1660,\"height\":750}', 'Massage Therapy Banner', 'Massage Therapy Banner', NULL, 1, 1, '2025-03-17 09:05:13', '2025-03-17 09:05:31'),
(43, '1742449286-3.png', 'image/png', '{\"filename\":\"3.png\",\"extension\":\"png\",\"size\":24757,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '3', '3', NULL, 1, 1, '2025-03-20 12:41:26', '2025-03-20 12:41:26'),
(44, '1742449286-2.png', 'image/png', '{\"filename\":\"2.png\",\"extension\":\"png\",\"size\":30393,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '2', '2', NULL, 1, 1, '2025-03-20 12:41:26', '2025-03-20 12:41:26'),
(45, '1742449334-2.jpg', 'image/jpeg', '{\"filename\":\"2.jpg\",\"extension\":\"jpg\",\"size\":147009,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '2', '2', NULL, 1, 1, '2025-03-20 12:42:14', '2025-03-20 12:42:14'),
(46, '1742451067-1.png', 'image/png', '{\"filename\":\"1.png\",\"extension\":\"png\",\"size\":20674,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '1', '1', NULL, 1, 1, '2025-03-20 13:11:07', '2025-03-20 13:11:07'),
(47, '1742451103-3.jpg', 'image/jpeg', '{\"filename\":\"3.jpg\",\"extension\":\"jpg\",\"size\":163177,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '3', '3', NULL, 1, 1, '2025-03-20 13:11:43', '2025-03-20 13:11:43'),
(48, '1742451104-5.jpg', 'image/jpeg', '{\"filename\":\"5.jpg\",\"extension\":\"jpg\",\"size\":138661,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '5', '5', NULL, 1, 1, '2025-03-20 13:11:44', '2025-03-20 13:11:44'),
(49, '1742451104-4.jpg', 'image/jpeg', '{\"filename\":\"4.jpg\",\"extension\":\"jpg\",\"size\":162254,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '4', '4', NULL, 1, 1, '2025-03-20 13:11:44', '2025-03-20 13:11:44'),
(50, '1742451113-1.jpg', 'image/jpeg', '{\"filename\":\"1.jpg\",\"extension\":\"jpg\",\"size\":269872,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '1', '1', NULL, 1, 1, '2025-03-20 13:11:53', '2025-03-20 13:11:53'),
(51, '1742451299-4.png', 'image/png', '{\"filename\":\"4.png\",\"extension\":\"png\",\"size\":23351,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '4', '4', NULL, 1, 1, '2025-03-20 13:14:59', '2025-03-20 13:14:59'),
(52, '1742451310-16.png', 'image/png', '{\"filename\":\"16.png\",\"extension\":\"png\",\"size\":22983,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '16', '16', NULL, 1, 1, '2025-03-20 13:15:10', '2025-03-20 13:15:10'),
(53, '1742451342-16.jpg', 'image/jpeg', '{\"filename\":\"16.jpg\",\"extension\":\"jpg\",\"size\":145937,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '16', '16', NULL, 1, 1, '2025-03-20 13:15:42', '2025-03-20 13:15:42'),
(54, '1742452199-9.png', 'image/png', '{\"filename\":\"9.png\",\"extension\":\"png\",\"size\":20143,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '9', '9', NULL, 1, 1, '2025-03-20 13:29:59', '2025-03-20 13:29:59'),
(55, '1742452206-5.png', 'image/png', '{\"filename\":\"5.png\",\"extension\":\"png\",\"size\":22364,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '5', '5', NULL, 1, 1, '2025-03-20 13:30:06', '2025-03-20 13:30:06'),
(56, '1742452213-6.png', 'image/png', '{\"filename\":\"6.png\",\"extension\":\"png\",\"size\":20767,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '6', '6', NULL, 1, 1, '2025-03-20 13:30:13', '2025-03-20 13:30:13'),
(57, '1742452250-9.jpg', 'image/jpeg', '{\"filename\":\"9.jpg\",\"extension\":\"jpg\",\"size\":150846,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '9', '9', NULL, 1, 1, '2025-03-20 13:30:50', '2025-03-20 13:30:50'),
(58, '1742453347-5.jpg', 'image/jpeg', '{\"filename\":\"5.jpg\",\"extension\":\"jpg\",\"size\":138661,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '5', '5', NULL, 1, 1, '2025-03-20 13:49:07', '2025-03-20 13:49:07'),
(59, '1742453477-6.jpg', 'image/jpeg', '{\"filename\":\"6.jpg\",\"extension\":\"jpg\",\"size\":178390,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '6', '6', NULL, 1, 1, '2025-03-20 13:51:17', '2025-03-20 13:51:17'),
(60, '1742454033-8.png', 'image/png', '{\"filename\":\"8.png\",\"extension\":\"png\",\"size\":28946,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '8', '8', NULL, 1, 1, '2025-03-20 14:00:33', '2025-03-20 14:00:33'),
(61, '1742454039-11.png', 'image/png', '{\"filename\":\"11.png\",\"extension\":\"png\",\"size\":22495,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '11', '11', NULL, 1, 1, '2025-03-20 14:00:39', '2025-03-20 14:00:39'),
(62, '1742454039-12.png', 'image/png', '{\"filename\":\"12.png\",\"extension\":\"png\",\"size\":21226,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '12', '12', NULL, 1, 1, '2025-03-20 14:00:39', '2025-03-20 14:00:39'),
(63, '1742454039-13.png', 'image/png', '{\"filename\":\"13.png\",\"extension\":\"png\",\"size\":21548,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '13', '13', NULL, 1, 1, '2025-03-20 14:00:39', '2025-03-20 14:00:39'),
(64, '1742454078-8.jpg', 'image/jpeg', '{\"filename\":\"8.jpg\",\"extension\":\"jpg\",\"size\":211950,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '8', '8', NULL, 1, 1, '2025-03-20 14:01:18', '2025-03-20 14:01:18'),
(65, '1742454183-7.jpg', 'image/jpeg', '{\"filename\":\"7.jpg\",\"extension\":\"jpg\",\"size\":175493,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '7', '7', NULL, 1, 1, '2025-03-20 14:03:03', '2025-03-20 14:03:03'),
(66, '1742454199-17.png', 'image/png', '{\"filename\":\"17.png\",\"extension\":\"png\",\"size\":20292,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '17', '17', NULL, 1, 1, '2025-03-20 14:03:19', '2025-03-20 14:03:19'),
(67, '1742454209-7.png', 'image/png', '{\"filename\":\"7.png\",\"extension\":\"png\",\"size\":22493,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '7', '7', NULL, 1, 1, '2025-03-20 14:03:29', '2025-03-20 14:03:29'),
(68, '1742459098-12.jpg', 'image/jpeg', '{\"filename\":\"12.jpg\",\"extension\":\"jpg\",\"size\":293448,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '12', '12', NULL, 1, 1, '2025-03-20 15:24:58', '2025-03-20 15:24:58'),
(69, '1742459198-10.jpg', 'image/jpeg', '{\"filename\":\"10.jpg\",\"extension\":\"jpg\",\"size\":166292,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '10', '10', NULL, 1, 1, '2025-03-20 15:26:38', '2025-03-20 15:26:38'),
(70, '1742459205-10.png', 'image/png', '{\"filename\":\"10.png\",\"extension\":\"png\",\"size\":22578,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '10', '10', NULL, 1, 1, '2025-03-20 15:26:45', '2025-03-20 15:26:45'),
(71, '1742459301-15.png', 'image/png', '{\"filename\":\"15.png\",\"extension\":\"png\",\"size\":24469,\"type\":\"image\\/png\",\"width\":120,\"height\":120}', '15', '15', NULL, 1, 1, '2025-03-20 15:28:21', '2025-03-20 15:28:21'),
(72, '1742459317-13.jpg', 'image/jpeg', '{\"filename\":\"13.jpg\",\"extension\":\"jpg\",\"size\":169633,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '13', '13', NULL, 1, 1, '2025-03-20 15:28:37', '2025-03-20 15:28:37'),
(73, '1742459325-15.jpg', 'image/jpeg', '{\"filename\":\"15.jpg\",\"extension\":\"jpg\",\"size\":260877,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '15', '15', NULL, 1, 1, '2025-03-20 15:28:45', '2025-03-20 15:28:45'),
(74, '1742459452-11.jpg', 'image/jpeg', '{\"filename\":\"11.jpg\",\"extension\":\"jpg\",\"size\":200490,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '11', '11', NULL, 1, 1, '2025-03-20 15:30:52', '2025-03-20 15:30:52'),
(75, '1742459650-14.jpg', 'image/jpeg', '{\"filename\":\"14.jpg\",\"extension\":\"jpg\",\"size\":229518,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '14', '14', NULL, 1, 1, '2025-03-20 15:34:10', '2025-03-20 15:34:10'),
(76, '1742459781-17.jpg', 'image/jpeg', '{\"filename\":\"17.jpg\",\"extension\":\"jpg\",\"size\":171023,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '17', '17', NULL, 1, 1, '2025-03-20 15:36:21', '2025-03-20 15:36:21'),
(77, '1742459828-18.jpg', 'image/jpeg', '{\"filename\":\"18.jpg\",\"extension\":\"jpg\",\"size\":227188,\"type\":\"image\\/jpeg\",\"width\":545,\"height\":581}', '18', '18', NULL, 1, 1, '2025-03-20 15:37:08', '2025-03-20 15:37:08'),
(78, '1743404952-4.jpg', 'image/jpeg', '{\"filename\":\"4.jpg\",\"extension\":\"jpg\",\"size\":192002,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '4', '4', NULL, 1, 1, '2025-03-31 14:09:12', '2025-03-31 14:09:12'),
(79, '1743404952-1.jpg', 'image/jpeg', '{\"filename\":\"1.jpg\",\"extension\":\"jpg\",\"size\":213632,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '1', '1', NULL, 1, 1, '2025-03-31 14:09:12', '2025-03-31 14:09:12'),
(80, '1743404952-2.jpg', 'image/jpeg', '{\"filename\":\"2.jpg\",\"extension\":\"jpg\",\"size\":183163,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '2', '2', NULL, 1, 1, '2025-03-31 14:09:12', '2025-03-31 14:09:12'),
(81, '1743404953-7.jpg', 'image/jpeg', '{\"filename\":\"7.jpg\",\"extension\":\"jpg\",\"size\":198254,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '7', '7', NULL, 1, 1, '2025-03-31 14:09:13', '2025-03-31 14:09:13'),
(82, '1743404953-6.jpg', 'image/jpeg', '{\"filename\":\"6.jpg\",\"extension\":\"jpg\",\"size\":203888,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '6', '6', NULL, 1, 1, '2025-03-31 14:09:13', '2025-03-31 14:09:13'),
(83, '1743404953-11.jpg', 'image/jpeg', '{\"filename\":\"11.jpg\",\"extension\":\"jpg\",\"size\":204762,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '11', '11', NULL, 1, 1, '2025-03-31 14:09:13', '2025-03-31 14:09:13'),
(84, '1743404953-5.jpg', 'image/jpeg', '{\"filename\":\"5.jpg\",\"extension\":\"jpg\",\"size\":204318,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '5', '5', NULL, 1, 1, '2025-03-31 14:09:13', '2025-03-31 14:09:13'),
(85, '1743404953-13.jpg', 'image/jpeg', '{\"filename\":\"13.jpg\",\"extension\":\"jpg\",\"size\":195318,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '13', '13', NULL, 1, 1, '2025-03-31 14:09:13', '2025-03-31 14:09:13'),
(86, '1743404953-8.jpg', 'image/jpeg', '{\"filename\":\"8.jpg\",\"extension\":\"jpg\",\"size\":193732,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '8', '8', NULL, 1, 1, '2025-03-31 14:09:13', '2025-03-31 14:09:13'),
(87, '1743404953-12.jpg', 'image/jpeg', '{\"filename\":\"12.jpg\",\"extension\":\"jpg\",\"size\":210068,\"type\":\"image\\/jpeg\",\"width\":514,\"height\":601}', '12', '12', NULL, 1, 1, '2025-03-31 14:09:13', '2025-03-31 14:09:13'),
(88, '1751876946-ser18.jpg', 'image/jpeg', '{\"filename\":\"ser18.jpg\",\"extension\":\"jpg\",\"size\":276627,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":376}', 'ser18', 'ser18', NULL, 1, 1, '2025-07-07 15:29:06', '2025-07-07 15:29:06'),
(89, '1751977363-hd-team.jpg', 'image/jpeg', '{\"filename\":\"hd-team.jpg\",\"extension\":\"jpg\",\"size\":713522,\"type\":\"image\\/jpeg\",\"width\":1920,\"height\":550}', 'hd-team', 'hd-team', NULL, 1, 1, '2025-07-08 19:22:43', '2025-07-08 19:22:43'),
(90, '1751977711-1.jpg', 'image/jpeg', '{\"filename\":\"1.jpg\",\"extension\":\"jpg\",\"size\":232689,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '1', '1', NULL, 1, 1, '2025-07-08 19:28:31', '2025-07-08 19:28:31'),
(91, '1751977723-2.jpg', 'image/jpeg', '{\"filename\":\"2.jpg\",\"extension\":\"jpg\",\"size\":187163,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '2', '2', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43'),
(92, '1751977723-3.jpg', 'image/jpeg', '{\"filename\":\"3.jpg\",\"extension\":\"jpg\",\"size\":140013,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '3', '3', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43'),
(93, '1751977723-4.jpg', 'image/jpeg', '{\"filename\":\"4.jpg\",\"extension\":\"jpg\",\"size\":151685,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '4', '4', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43'),
(94, '1751977723-5.jpg', 'image/jpeg', '{\"filename\":\"5.jpg\",\"extension\":\"jpg\",\"size\":185575,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '5', '5', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43'),
(95, '1751977723-6.jpg', 'image/jpeg', '{\"filename\":\"6.jpg\",\"extension\":\"jpg\",\"size\":180100,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '6', '6', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43'),
(96, '1751977723-7.jpg', 'image/jpeg', '{\"filename\":\"7.jpg\",\"extension\":\"jpg\",\"size\":167503,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '7', '7', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43'),
(97, '1751977723-8.jpg', 'image/jpeg', '{\"filename\":\"8.jpg\",\"extension\":\"jpg\",\"size\":203303,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '8', '8', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43'),
(98, '1751977723-9.jpg', 'image/jpeg', '{\"filename\":\"9.jpg\",\"extension\":\"jpg\",\"size\":367568,\"type\":\"image\\/jpeg\",\"width\":800,\"height\":534}', '9', '9', NULL, 1, 1, '2025-07-08 19:28:43', '2025-07-08 19:28:43');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_menu`
--

CREATE TABLE `tasap_menu` (
  `menu_id` int(10) UNSIGNED NOT NULL,
  `menu_type_id` int(11) NOT NULL,
  `class_id` int(11) NOT NULL DEFAULT 0,
  `data_id` int(11) NOT NULL DEFAULT 0 COMMENT 'universal id',
  `label` varchar(100) DEFAULT NULL,
  `hint` varchar(255) DEFAULT NULL,
  `is_link` tinyint(4) NOT NULL DEFAULT 0,
  `external_link` varchar(255) DEFAULT NULL,
  `link_target` enum('','_blank','_self') DEFAULT NULL,
  `menu_class` varchar(60) DEFAULT NULL,
  `image_url` varchar(255) DEFAULT NULL,
  `parent_menu_id` int(11) NOT NULL DEFAULT 0,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_menu`
--

INSERT INTO `tasap_menu` (`menu_id`, `menu_type_id`, `class_id`, `data_id`, `label`, `hint`, `is_link`, `external_link`, `link_target`, `menu_class`, `image_url`, `parent_menu_id`, `c_order`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 0, 0, 'Home', NULL, 1, '/', NULL, '', '', 0, 1, 1, 1, 1, NULL, '2025-03-17 08:45:00'),
(2, 1, 8, 3, 'About Us', NULL, 0, NULL, NULL, '', '', 0, 2, 1, 1, 1, NULL, '2025-03-17 08:47:17'),
(4, 1, 8, 4, 'Contact Us', NULL, 0, NULL, NULL, '', '', 0, 7, 1, 1, 1, NULL, '2025-03-17 08:47:17'),
(5, 1, 8, 34, 'New Patient', NULL, 0, NULL, NULL, '', '', 0, 5, 1, 1, 1, NULL, '2025-03-17 08:47:17'),
(6, 1, 8, 6, 'Our Team', NULL, 0, NULL, NULL, '', '', 0, 3, 1, 1, 1, NULL, '2025-03-17 08:47:17'),
(7, 1, 8, 15, 'Services', NULL, 0, NULL, NULL, '', '', 0, 4, 1, 1, 1, NULL, '2025-03-17 08:47:17'),
(8, 2, 0, 0, 'Home', NULL, 1, '/', NULL, '', '', 0, 1, 1, 1, 1, NULL, '2025-03-17 08:49:25'),
(9, 2, 8, 36, 'Body Conditions', NULL, 0, NULL, NULL, '', '', 0, 5, 1, 1, 1, NULL, '2025-03-17 08:53:07'),
(10, 2, 8, 4, 'Contact Us', NULL, 0, NULL, NULL, '', '', 0, 7, 1, 1, 1, NULL, '2025-03-17 08:53:07'),
(11, 2, 8, 6, 'Our Team', NULL, 0, NULL, NULL, '', '', 0, 3, 1, 1, 1, NULL, '2025-03-17 08:52:26'),
(12, 2, 8, 3, 'About Us', NULL, 0, NULL, NULL, '', '', 0, 2, 1, 1, 1, NULL, '2025-03-17 08:52:26'),
(13, 2, 8, 37, 'Appointment', NULL, 0, NULL, NULL, '', '', 0, 8, 1, 1, 1, NULL, '2025-03-17 08:53:07'),
(14, 2, 8, 34, 'New Patient', NULL, 0, NULL, NULL, '', '', 0, 6, 1, 1, 1, NULL, '2025-03-17 08:53:28'),
(15, 2, 8, 15, 'Services', NULL, 0, NULL, NULL, '', '', 0, 4, 1, 1, 1, NULL, '2025-03-17 08:52:26'),
(16, 1, 8, 35, 'Our Facility', NULL, 0, NULL, NULL, '', '', 0, 6, 1, 1, 1, NULL, '2025-07-08 19:05:36'),
(17, 2, 8, 35, 'Our Facility', NULL, 0, NULL, NULL, '', '', 0, 4, 1, 1, 1, NULL, '2025-07-08 19:06:22');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_menu_type`
--

CREATE TABLE `tasap_menu_type` (
  `menu_type_id` int(10) UNSIGNED NOT NULL,
  `label` varchar(128) NOT NULL,
  `menu_name` varchar(128) NOT NULL,
  `menu_for` enum('','p','f','s','o') DEFAULT NULL COMMENT 'p=primary,f=footer,s=sidebar,o=other',
  `c_order` bigint(20) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_menu_type`
--

INSERT INTO `tasap_menu_type` (`menu_type_id`, `label`, `menu_name`, `menu_for`, `c_order`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Header Navigation Menu', 'header-navigation-menu', 'p', 0, 1, 1, 0, '2025-03-17 08:43:36', '2025-03-17 08:43:36'),
(2, 'Footer First Quick Links', 'footer-first-quick-links', 'f', 0, 1, 1, 0, '2025-03-17 08:44:04', '2025-03-17 08:44:04');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_migrations`
--

CREATE TABLE `tasap_migrations` (
  `id` int(10) UNSIGNED NOT NULL,
  `migration` varchar(255) NOT NULL,
  `batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_migrations`
--

INSERT INTO `tasap_migrations` (`id`, `migration`, `batch`) VALUES
(1, '0001_01_01_000001_create_cache_table', 1),
(2, '0001_01_01_000002_create_jobs_table', 1),
(3, '2014_10_12_000000_create_users_table', 1),
(4, '2016_06_01_000001_create_oauth_auth_codes_table', 1),
(5, '2016_06_01_000002_create_oauth_access_tokens_table', 1),
(6, '2016_06_01_000003_create_oauth_refresh_tokens_table', 1),
(7, '2016_06_01_000004_create_oauth_clients_table', 1),
(8, '2016_06_01_000005_create_oauth_personal_access_clients_table', 1),
(9, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(10, '2022_07_13_082126_create_gallery_table', 1),
(11, '2022_07_13_082916_create_gallery_data_table', 1),
(12, '2022_10_11_153047_create_menu_table', 1),
(13, '2022_10_11_153114_create_menu_type_table', 1),
(14, '2022_11_29_110456_create_testimonial_table', 1),
(15, '2023_04_26_062716_create_media_table', 1),
(16, '2023_04_26_063605_create_pages_table', 1),
(17, '2023_04_26_103106_create_admin_table', 1),
(18, '2023_04_26_130939_create_custom_field_group_table', 1),
(19, '2023_04_26_131206_create_custom_field_group_type_table', 1),
(20, '2023_04_26_131243_create_custom_field_group_type_class_template_table', 1),
(21, '2023_04_26_131327_create_custom_field_group_type_values_table', 1),
(22, '2023_04_26_131427_create_custom_field_type_table', 1),
(23, '2023_04_26_183311_create_settings_table', 1),
(24, '2023_04_26_200704_create_admin_role_table', 1),
(25, '2023_04_26_200729_create_module_class_table', 1),
(26, '2023_04_26_200730_create_modules_table', 1),
(27, '2023_04_26_201200_create_module_methods_table', 1),
(28, '2023_04_26_201200_create_role_module_method_rights_table', 1),
(29, '2023_04_26_222112_create_template_table', 1),
(30, '2023_04_26_223152_create_module_class_templates_table', 1),
(31, '2023_05_04_070936_enquiry_table', 1),
(32, '2023_06_26_122600_create_blog_categories_table', 1),
(33, '2023_06_26_122813_create_blog_tags_table', 1),
(34, '2023_09_22_140328_create_blog_posts_table', 1),
(35, '2023_09_22_140339_create_blog_post_categories_table', 1),
(36, '2023_09_22_140339_create_blog_post_tags_table', 1),
(37, '2023_09_22_140451_create_blog_post_views_table', 1),
(38, '2024_08_01_150113_create_email_templates_table', 1),
(39, '2024_08_28_132306_create_event_types_table', 1),
(40, '2025_02_13_130801_create_new_patient_forms_table', 1),
(41, '2025_03_10_133654_create_new_patient_problems_table', 1);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_modules`
--

CREATE TABLE `tasap_modules` (
  `module_id` int(10) UNSIGNED NOT NULL,
  `class_id` int(11) NOT NULL,
  `has_templates` enum('','n','y') NOT NULL COMMENT 'y=Yes,n=No',
  `set_user_rights` enum('','n','y') NOT NULL COMMENT 'y=Yes,n=No',
  `is_set_cf_dropdown` enum('','n','y') NOT NULL COMMENT 'y=Yes,n=No',
  `title` varchar(128) NOT NULL,
  `label` varchar(255) DEFAULT NULL,
  `info` text DEFAULT NULL,
  `class_name` varchar(191) NOT NULL,
  `is_menu` tinyint(4) NOT NULL DEFAULT 1,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `parent_module_id` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_modules`
--

INSERT INTO `tasap_modules` (`module_id`, `class_id`, `has_templates`, `set_user_rights`, `is_set_cf_dropdown`, `title`, `label`, `info`, `class_name`, `is_menu`, `c_order`, `parent_module_id`, `status`) VALUES
(1, 1, '', '', '', 'Dashboard', 'Dashboard', NULL, 'DashboardController', 1, 1, 0, 1),
(2, 2, '', '', '', 'Common', 'Common', NULL, 'BaseController', 0, 0, 0, 1),
(3, 3, '', '', '', 'Admin Users', 'Admin Users', NULL, 'AdminController', 0, 20, 0, 1),
(4, 4, '', '', '', 'Admin Users Role', 'Admin Users Role', NULL, 'AdminRoleController', 1, 0, 3, 1),
(5, 5, '', '', '', 'Settings', 'Settings', NULL, 'SettingsController', 1, 19, 0, 1),
(6, 6, '', '', '', 'Media', 'Media', NULL, 'MediaController', 1, 18, 0, 1),
(7, 7, '', '', '', 'Templates', 'Templates', NULL, 'TemplateController', 1, 0, 0, 1),
(8, 8, 'y', '', '', 'Pages', 'Pages', NULL, 'PageController', 0, 17, 0, 1),
(9, 9, '', '', '', 'Custom Fields', 'Custom Fields', NULL, 'CustomFieldController', 1, 0, 0, 1),
(10, 10, '', '', '', 'Website Menu Type', 'Website Menu Type', 'Hidden module', 'MenuTypeController', 0, 0, 0, 1),
(11, 11, '', '', '', 'Website Menus', 'Website Menus', NULL, 'MenuController', 0, 6, 0, 1),
(12, 12, '', '', '', 'Email Templates', 'Email Templates', NULL, 'EmailTemplateController', 1, 3, 0, 1),
(13, 13, '', '', '', 'Testimonials', 'Testimonials', NULL, 'TestimonialController', 1, 4, 0, 1),
(14, 14, '', '', 'y', 'Gallery', 'Gallery', NULL, 'GalleryController', 0, 5, 0, 1),
(15, 15, '', '', '', 'Gallery Data', 'Gallery Data', NULL, 'GalleryDataController', 0, 0, 14, 1),
(16, 16, '', '', '', 'Contact Enquiry', 'Contact Enquiry', NULL, 'EnquiryController', 1, 2, 0, 1),
(17, 17, '', '', '', 'Blog Posts', 'Blog Posts', NULL, 'BlogPostController', 1, 6, 0, 1),
(18, 18, '', '', '', 'Blog Category', 'All Blog Categories', NULL, 'BlogCategoryController', 1, 1, 17, 1),
(19, 19, '', '', '', 'Blog Tags', 'All Blog sTags', NULL, 'BlogTagController', 0, 2, 17, 1),
(20, 20, '', '', '', 'New Patient Enquiry', 'New Patient Enquiry', NULL, 'NewPatientController', 1, 2, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_module_class`
--

CREATE TABLE `tasap_module_class` (
  `class_id` int(10) UNSIGNED NOT NULL,
  `class_name` varchar(191) NOT NULL,
  `model_name` varchar(255) NOT NULL,
  `slug` varchar(100) NOT NULL,
  `info` text DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_module_class`
--

INSERT INTO `tasap_module_class` (`class_id`, `class_name`, `model_name`, `slug`, `info`, `status`) VALUES
(1, 'DashboardController', 'Dashboard', 'dashboard', NULL, 1),
(2, 'BaseController', 'Base', 'base', NULL, 1),
(3, 'AdminController', 'Admin', 'admin', NULL, 1),
(4, 'AdminRoleController', 'AdminRole', 'admin-role', NULL, 1),
(5, 'SettingsController', 'Settings', 'settings', NULL, 1),
(6, 'MediaController', 'Media', 'media', NULL, 1),
(7, 'TemplateController', 'Template', 'template', NULL, 0),
(8, 'PageController', 'Page', 'page', NULL, 1),
(9, 'CustomFieldController', 'CustomField', 'custom-field', NULL, 1),
(10, 'MenuTypeController', 'MenuType', 'menutype', NULL, 0),
(11, 'MenuController', 'Menu', 'menu', NULL, 1),
(12, 'EmailTemplateController', 'EmailTemplateModel', 'email-template', NULL, 1),
(13, 'TestimonialController', 'TestimonialModel', 'testimonial', NULL, 1),
(14, 'GalleryController', 'Gallery', 'gallery', NULL, 1),
(15, 'GalleryDataController', 'GalleryData', 'gallery-data', NULL, 1),
(16, 'EnquiryController', 'Enquiry', 'enquiry', NULL, 1),
(17, 'BlogPostController', 'BlogPost', 'blogpost', NULL, 1),
(18, 'BlogCategoryController', 'BlogCategory', 'blogcategory', NULL, 1),
(19, 'BlogTagController', 'BlogTag', 'blogtag', NULL, 1),
(20, 'NewPatientController', 'NewPatient', 'new-patient', NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_module_class_templates`
--

CREATE TABLE `tasap_module_class_templates` (
  `module_template_id` int(10) UNSIGNED NOT NULL,
  `class_id` int(11) NOT NULL DEFAULT 0,
  `template_id` int(11) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_module_class_templates`
--

INSERT INTO `tasap_module_class_templates` (`module_template_id`, `class_id`, `template_id`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 8, 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(2, 8, 2, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(3, 8, 3, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(4, 8, 4, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(5, 8, 5, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(6, 8, 6, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(7, 8, 7, 1, 0, '2025-03-17 05:47:03', NULL),
(8, 8, 8, 1, 0, '2025-03-17 05:52:18', NULL),
(9, 8, 9, 1, 0, '2025-03-17 05:59:38', NULL),
(10, 8, 10, 1, 0, '2025-03-17 06:00:06', NULL),
(11, 8, 11, 1, 0, '2025-03-17 06:01:07', NULL),
(12, 8, 12, 1, 0, '2025-03-17 06:04:32', NULL),
(13, 8, 13, 1, 0, '2025-03-17 06:06:02', NULL),
(14, 8, 14, 1, 0, '2025-03-17 06:08:24', NULL),
(16, 8, 16, 1, 0, '2026-03-06 14:10:22', NULL),
(17, 8, 17, 1, 0, '2026-03-06 14:12:36', NULL),
(18, 8, 18, 1, 0, '2026-03-06 14:17:04', NULL),
(19, 8, 19, 1, 0, '2026-03-06 14:19:05', NULL),
(20, 8, 20, 1, 0, '2026-03-06 14:20:34', NULL),
(21, 8, 21, 1, 0, '2026-03-06 14:21:12', NULL),
(22, 8, 22, 1, 0, '2026-03-06 14:23:12', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_module_methods`
--

CREATE TABLE `tasap_module_methods` (
  `method_id` int(10) UNSIGNED NOT NULL,
  `module_id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `method_name` varchar(255) DEFAULT NULL,
  `default_present` tinyint(4) NOT NULL DEFAULT 0,
  `access_role_id` int(11) NOT NULL DEFAULT 0 COMMENT '0=access to all',
  `route_link` varchar(255) NOT NULL,
  `affected_route_link` varchar(255) DEFAULT NULL,
  `is_left_nav` tinyint(4) NOT NULL DEFAULT 1,
  `is_external_link` tinyint(4) NOT NULL DEFAULT 0,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_module_methods`
--

INSERT INTO `tasap_module_methods` (`method_id`, `module_id`, `title`, `method_name`, `default_present`, `access_role_id`, `route_link`, `affected_route_link`, `is_left_nav`, `is_external_link`, `c_order`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 'Dashboard', 'show', 1, 0, 'admin.dashboard', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(2, 2, 'Common Status', 'changestatus', 1, 0, 'admin.changestatus', 'admin.dashboard', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(11, 3, 'Edit Profile', 'editprofile', 0, 0, 'admin.profile', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(12, 3, 'Update Profile', 'updateprofile', 0, 0, 'admin.profile.update', 'admin.profile', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(13, 3, 'All Users', 'index', 0, 0, 'admin.admin.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(14, 3, 'Add User', 'create', 0, 0, 'admin.admin.create', NULL, 1, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(15, 3, 'Store User', 'store', 0, 0, 'admin.admin.store', 'admin.admin.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(16, 3, 'Edit User', 'edit', 0, 0, 'admin.admin.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(17, 3, 'Update User', 'update', 0, 0, 'admin.admin.update', 'admin.admin.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(18, 3, 'Delete User', 'deletedata', 0, 0, 'admin.admin.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(31, 4, 'Users Role', 'index', 0, 0, 'admin.admin-role.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(32, 4, 'Add Role', 'create', 0, 0, 'admin.admin-role.create', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(33, 4, 'Store Role', 'store', 0, 0, 'admin.admin-role.store', 'admin.admin-role.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(34, 4, 'Edit Role', 'edit', 0, 0, 'admin.admin-role.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(35, 4, 'Update Role', 'update', 0, 0, 'admin.admin-role.update', 'admin.admin-role.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(36, 4, 'Delete Role', 'deletedata', 0, 0, 'admin.admin-role.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(51, 5, 'General', 'editGeneral', 0, 0, 'admin.settings.general', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(52, 5, 'General Update', 'updateGeneral', 0, 0, 'admin.settings.general.update', 'admin.settings.general', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(53, 5, 'Mail', 'editMail', 0, 0, 'admin.settings.mail', NULL, 1, 0, 3, 1, '2025-03-19 23:40:23', NULL),
(54, 5, 'Mail Update', 'updateMail', 0, 0, 'admin.settings.mail.update', 'admin.settings.mail', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(55, 5, 'Delete File', 'deletefile', 0, 0, 'admin.settings.deletefile', 'admin.settings.general', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(71, 6, 'All Media', 'index', 0, 0, 'admin.media.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(72, 6, 'All Media Popup', 'getGallery', 0, 0, 'admin.media.gallery', 'admin.media.index', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(73, 6, 'Media Info Popup', 'getMediainfo', 0, 0, 'admin.media.info', 'admin.media.index', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(74, 6, 'Add Media', 'create', 0, 0, 'admin.media.create', NULL, 1, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(75, 6, 'Store Media', 'store', 0, 0, 'admin.media.store', 'admin.media.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(76, 6, 'Store Media Popup', 'storeajax', 0, 0, 'admin.media.ajax.upload', 'admin.media.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(77, 6, 'Edit Media', 'edit', 0, 0, 'admin.media.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(78, 6, 'Update Media', 'update', 0, 0, 'admin.media.update', 'admin.media.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(79, 6, 'Update Media Popup', 'updateajax', 0, 0, 'admin.media.ajax.update', 'admin.media.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(80, 6, 'Delete Media', 'deletedata', 0, 0, 'admin.media.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(81, 6, 'Delete Media Popup', 'destroyajax', 0, 0, 'admin.media.ajax.delete', 'admin.media.delete', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(91, 7, 'Templates', 'index', 0, 0, 'admin.template.index', NULL, 0, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(92, 7, 'Add Template', 'create', 0, 0, 'admin.template.create', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(93, 7, 'Store Template', 'store', 0, 0, 'admin.template.store', 'admin.template.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(94, 7, 'Edit Template', 'edit', 0, 0, 'admin.template.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(95, 7, 'Update Template', 'update', 0, 0, 'admin.template.update', 'admin.template.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(96, 7, 'Delete Template', 'deletedata', 0, 0, 'admin.template.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(111, 8, 'All Pages', 'index', 0, 0, 'admin.page.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(112, 8, 'Add Page', 'create', 0, 0, 'admin.page.create', NULL, 1, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(113, 8, 'Store Page', 'store', 0, 0, 'admin.page.store', 'admin.page.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(114, 8, 'Edit Page', 'edit', 0, 0, 'admin.page.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(115, 8, 'Update Page', 'update', 0, 0, 'admin.page.update', 'admin.page.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(116, 8, 'Delete Page', 'deletedata', 0, 0, 'admin.page.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(131, 9, 'Custom fields', 'index', 0, 0, 'admin.customfield.index', NULL, 0, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(132, 9, 'Add Custom field', 'create', 0, 0, 'admin.customfield.create', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(133, 9, 'Store Custom field', 'store', 0, 0, 'admin.customfield.store', 'admin.customfield.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(134, 9, 'Show Custom field', 'show', 0, 0, 'admin.customfield.show', 'admin.customfield.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(135, 9, 'Edit Custom field', 'edit', 0, 0, 'admin.customfield.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(136, 9, 'Update Custom field', 'update', 0, 0, 'admin.customfield.update', 'admin.customfield.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(137, 9, 'Delete Custom field', 'deletedata', 0, 0, 'admin.customfield.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(151, 10, 'Menu Type', 'index', 0, 0, 'admin.menu.index.custom', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(152, 10, 'Add Menu Type', 'create', 0, 0, 'admin.menutype.create', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(153, 10, 'Store Menu Type', 'store', 0, 0, 'admin.menutype.store', 'admin.menutype.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(154, 10, 'Edit Menu Type', 'edit', 0, 0, 'admin.menutype.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(155, 10, 'Update Menu Type', 'update', 0, 0, 'admin.menutype.update', 'admin.menutype.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(156, 10, 'Delete Menu Type', 'deletedata', 0, 0, 'admin.menutype.destroy.custom', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(171, 11, 'Website Menus', 'index', 0, 0, 'admin.menu.index.custom', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(172, 11, 'Add Menu', 'create', 0, 0, 'admin.menu.create', NULL, 0, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(173, 11, 'Store Menu', 'store', 0, 0, 'admin.menu.store', 'admin.menu.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(174, 11, 'Edit Menu', 'edit', 0, 0, 'admin.menu.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(175, 11, 'Update Menu', 'update', 0, 0, 'admin.menu.update', 'admin.menu.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(176, 11, 'Delete Menu', 'deletedata', 0, 0, 'admin.menu.destroy.custom', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(191, 12, 'All Email Templates', 'index', 0, 0, 'admin.email-template.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(192, 12, 'Add Email Template', 'create', 0, 0, 'admin.email-template.create', NULL, 1, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(193, 12, 'Store Email Template', 'store', 0, 0, 'admin.email-template.store', 'admin.email-template.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(194, 12, 'Edit Email Template', 'edit', 0, 0, 'admin.email-template.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(195, 12, 'Update Email Template', 'update', 0, 0, 'admin.email-template.update', 'admin.email-template.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(196, 12, 'Delete Email Template', 'deletedata', 0, 0, 'admin.email-template.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(211, 13, 'All Testimonials', 'index', 0, 0, 'admin.testimonial.index', NULL, 0, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(212, 13, 'Add Testimonial', 'create', 0, 0, 'admin.testimonial.create', NULL, 0, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(213, 13, 'Store Testimonial', 'store', 0, 0, 'admin.testimonial.store', 'admin.testimonial.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(214, 13, 'Edit Testimonial', 'edit', 0, 0, 'admin.testimonial.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(215, 13, 'Update Testimonial', 'update', 0, 0, 'admin.testimonial.update', 'admin.testimonial.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(216, 13, 'Delete Testimonial', 'deletedata', 0, 0, 'admin.testimonial.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(231, 14, 'All Gallery', 'index', 0, 0, 'admin.gallery.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(232, 14, 'Add Gallery', 'create', 0, 0, 'admin.gallery.create', NULL, 1, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(233, 14, 'Store Gallery', 'store', 0, 0, 'admin.gallery.store', 'admin.gallery.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(234, 14, 'Edit Gallery', 'edit', 0, 0, 'admin.gallery.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(235, 14, 'Update Gallery', 'update', 0, 0, 'admin.gallery.update', 'admin.gallery.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(236, 14, 'Delete Gallery', 'deletedata', 0, 0, 'admin.gallery.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(251, 15, 'Gallery Data', 'index', 0, 0, 'admin.gallery-data.index', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(252, 15, 'Add Gallery Data', 'create', 0, 0, 'admin.gallery-data.create', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(253, 15, 'Store Gallery Data', 'store', 0, 0, 'admin.gallery-data.store', 'admin.gallery-data.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(254, 15, 'Edit Gallery Data', 'edit', 0, 0, 'admin.gallery-data.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(255, 15, 'Update Gallery Data', 'update', 0, 0, 'admin.gallery-data.update', 'admin.gallery-data.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(256, 15, 'Delete Gallery Data', 'deletedata', 0, 0, 'admin.gallery-data.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(271, 16, 'Contact Enquiry', 'index', 0, 0, 'admin.enquiry.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(272, 16, 'View Contact Enquiry', 'view', 0, 0, 'admin.enquiry.show', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(273, 16, 'Export Contact Enquiry', 'export', 0, 0, 'admin.enquiry.export', 'admin.enquiry.index', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(274, 16, 'Delete Contact Enquiry', 'deletedata', 0, 0, 'admin.enquiry.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(291, 17, 'All Blog Posts', 'index', 0, 0, 'admin.blogpost.index', NULL, 0, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(292, 17, 'Add Blog Post', 'create', 0, 0, 'admin.blogpost.create', NULL, 0, 0, 2, 1, '2025-03-19 23:40:23', NULL),
(293, 17, 'Add Blog Post Manually', 'createmanual', 0, 0, 'admin.blogpost.createmanual', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(294, 17, 'Store Blog Post', 'store', 0, 0, 'Blog Post.bulk.upload', 'admin.blogpost.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(295, 17, 'Store Blog Post', 'store', 0, 0, 'admin.blogpost.store', 'admin.blogpost.createmanual', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(296, 17, 'Edit Blog Post', 'edit', 0, 0, 'admin.blogpost.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(297, 17, 'Update Blog Post', 'update', 0, 0, 'admin.blogpost.update', 'admin.blogpost.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(298, 17, 'Delete Blog Post', 'deletedata', 0, 0, 'admin.blogpost.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(311, 18, 'Blog Categories', 'index', 0, 0, 'admin.blogcategory.index', NULL, 0, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(312, 18, 'Add Blog Category', 'create', 0, 0, 'admin.blogcategory.create', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(313, 18, 'Store Blog Category', 'store', 0, 0, 'admin.blogcategory.store', 'admin.blogcategory.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(314, 18, 'Edit Blog Category', 'edit', 0, 0, 'admin.blogcategory.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(315, 18, 'Update Blog Category', 'update', 0, 0, 'admin.blogcategory.update', 'admin.blogcategory.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(316, 18, 'Delete Blog Category', 'deletedata', 0, 0, 'admin.blogcategory.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(317, 18, 'Delete Image', 'update', 0, 0, 'admin.blogcategory.delete.image', 'admin.blogcategory.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(331, 19, 'Blog Tags', 'index', 0, 0, 'admin.blogtag.index', NULL, 0, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(332, 19, 'Add Blog Tag', 'create', 0, 0, 'admin.blogtag.create', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(333, 19, 'Store Blog Tag', 'store', 0, 0, 'admin.blogtag.store', 'admin.blogtag.create', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(334, 19, 'Edit Blog Tag', 'edit', 0, 0, 'admin.blogtag.edit', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(335, 19, 'Update Blog Tag', 'update', 0, 0, 'admin.blogtag.update', 'admin.blogtag.edit', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(336, 19, 'Delete Blog Tag', 'deletedata', 0, 0, 'admin.blogtag.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(351, 20, 'New Patient Enquiry', 'index', 0, 0, 'admin.new-patient.index', NULL, 1, 0, 1, 1, '2025-03-19 23:40:23', NULL),
(352, 20, 'View New Patient Enquiry', 'view', 0, 0, 'admin.new-patient.show', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(353, 20, 'Export New Patient Enquiry', 'export', 0, 0, 'admin.new-patient.export', 'admin.new-patient.index', 0, 0, 0, 1, '2025-03-19 23:40:23', NULL),
(354, 20, 'Delete New Patient Enquiry', 'deletedata', 0, 0, 'admin.new-patient.delete', NULL, 0, 0, 0, 1, '2025-03-19 23:40:23', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_new_patient_forms`
--

CREATE TABLE `tasap_new_patient_forms` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(150) DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `type_of_appointment` varchar(150) DEFAULT NULL,
  `phone_home` varchar(20) DEFAULT NULL,
  `phone_work` varchar(20) DEFAULT NULL,
  `doctor_name` varchar(50) DEFAULT NULL,
  `occupation` varchar(50) DEFAULT NULL,
  `address` varchar(150) DEFAULT NULL,
  `allergies` varchar(50) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `emergency_contact_no` varchar(20) DEFAULT NULL,
  `health_care_no` varchar(50) DEFAULT NULL,
  `physiotherapy_reason` varchar(255) DEFAULT NULL,
  `how_long_condition_existed` varchar(255) DEFAULT NULL,
  `health` varchar(255) DEFAULT NULL,
  `referred_physiotherapy` enum('','doctor','other') NOT NULL,
  `physiotherapy_other` varchar(255) DEFAULT NULL,
  `has_past_physiotherapy` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `current_medications_name` varchar(100) DEFAULT NULL,
  `current_medications_condition` varchar(150) DEFAULT NULL,
  `current_medications_notes` text DEFAULT NULL,
  `injury_type` varchar(150) DEFAULT NULL,
  `injury_date` date DEFAULT NULL,
  `surgeries_type` varchar(150) DEFAULT NULL,
  `surgeries_date` date DEFAULT NULL,
  `treatment_from_professional` text DEFAULT NULL,
  `last_physiotherapy_visit` varchar(100) DEFAULT NULL,
  `emergency_contact_person` varchar(20) DEFAULT NULL,
  `emergency_phone` varchar(20) DEFAULT NULL,
  `client_sign` varchar(50) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `created_by` enum('','a','u') NOT NULL COMMENT 'a=admin,u=user',
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_by` enum('','a','u') NOT NULL COMMENT 'a=admin,u=user',
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_new_patient_forms`
--

INSERT INTO `tasap_new_patient_forms` (`id`, `name`, `dob`, `type_of_appointment`, `phone_home`, `phone_work`, `doctor_name`, `occupation`, `address`, `allergies`, `phone`, `email`, `emergency_contact_no`, `health_care_no`, `physiotherapy_reason`, `how_long_condition_existed`, `health`, `referred_physiotherapy`, `physiotherapy_other`, `has_past_physiotherapy`, `current_medications_name`, `current_medications_condition`, `current_medications_notes`, `injury_type`, `injury_date`, `surgeries_type`, `surgeries_date`, `treatment_from_professional`, `last_physiotherapy_visit`, `emergency_contact_person`, `emergency_phone`, `client_sign`, `status`, `ip_address`, `user_agent`, `created_by`, `created_id`, `updated_by`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Bedh Prakash Roy', '1988-05-15', 'NEW APPOINTMENT', '4163244560', '4163244562', 'Dr. Isha Sharma', 'Software Developer', 'Test address', 'No alergies', '4163210213', 'testing@tastechnologies.com', '4162230000', 'CND7838IOO99', 'TESTING', '10 Months', 'Good', 'other', 'JUST TESTING', 2, 'TEST MEDICATION', 'GOOD CONDITION', 'pins, wires, plates, artificial joints, canes', 'Knee Injury', '2022-03-02', 'Knee Surgeries', '2024-01-10', 'Not yet, but thinking of', 'Last Month 21 Feb 2025', 'Mr. Mohan Verma', '9052136541', 'Bedh Prakash Roy', 1, '103.102.121.128', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'u', 0, '', 0, '2025-03-19 23:48:49', '2025-03-19 23:48:49'),
(2, 'suganya', '1988-02-22', 'testing', '705-123-0645', '705-123-0612', 'testing', 'testing', 'testing', 'testing', '705-123-0645', 'suganya@tastechnologies.com', '705-123-0645', 'testing', 'testing', 'testing', 'testing', 'doctor', 'testing', 2, 'testing', 'testing', 'testing', 'testing', '2025-03-07', 'testing', '2025-03-21', 'testing', 'testing', 'testing', '705-123-0645', 'testing', 1, '101.0.63.89', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'u', 0, '', 0, '2025-03-21 13:24:06', '2025-03-21 13:24:06'),
(3, 'suganya', '2005-07-08', 'testing', '705-434-0645', '705-434-0645', 'testing', 'testing', 'testing', 'testing', '705-434-0645', 'suganya@tastechnologies.com', '705-434-0645', '43534', 'testing', 'testing', 'testing', 'doctor', 'testing', 1, 'testing', 'testing', 'testing', 'testing', '2025-07-04', 'testing', '2025-07-03', 'testing', 'testing', 'testing', 'testing', 'testing', 1, '101.0.63.101', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', 'u', 0, '', 0, '2025-07-09 11:55:57', '2025-07-09 11:55:57'),
(4, 'Bedh Prakash Roy', '1988-09-14', '1', '4161231456', '4161231456', 'TEST DOC', '7', 'Test address', '9', '4161231456', 'testing@tastechnologies.com', '4161231456', '13', '14', '15', '16', 'doctor', '18', 2, '20', '21', '22', '23', NULL, '25', '2025-09-26', '27', '50', '51', '52', '53', 1, '103.102.122.191', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36', 'u', 0, '', 0, '2025-09-20 18:23:34', '2025-09-20 18:23:34'),
(5, 'Jenna Henderson', '2005-08-05', 'Long term swelling of the left ankle. As well as instability of the muscles.', '4168301069', NULL, 'N/A', 'Unemployed', '119 Boyne crescent alliston', 'Certain adhesives', '4168301069', 'sadie4644@gmail.com', '6474099582', NULL, 'Swelling of the left ankle', '12 years', 'Pretty good', 'doctor', NULL, 1, NULL, NULL, NULL, NULL, NULL, 'Procedure for vascular malformation', NULL, 'No', 'About a year ago', 'Jason Henderson', '6474099582', 'Jenna Henderson', 1, '142.189.87.13', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1', 'u', 0, '', 0, '2025-09-23 02:06:35', '2025-09-23 02:06:35'),
(6, 'Sharon Aikins', '1970-06-11', NULL, '6472200034', NULL, NULL, 'CSR', NULL, NULL, '6472200034', 'shar.jeffy@gmail.com', NULL, NULL, NULL, NULL, 'Good', '', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Oct 30', 'Jeff Aikins', NULL, 'Sharon Aikins', 1, '38.240.195.39', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.7 Safari/605.1.15', 'u', 0, '', 0, '2025-10-31 06:28:59', '2025-10-31 06:28:59'),
(7, 'Shelby Thompson', '1989-11-03', 'Back pain', '7057181072', NULL, 'Doctor Lei', 'line worker at honda', '8 Ruthven cres', 'Seasonal', '7057181072', 'shelbythompson0322@hotmail.com', '7058902907', NULL, 'Back pain', '7555224570CE', 'good', '', NULL, 2, 'Alesse birth control', NULL, NULL, NULL, NULL, NULL, NULL, 'No', NULL, NULL, NULL, NULL, 1, '172.226.162.86', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0.1 Mobile/15E148 Safari/604.1', 'u', 0, '', 0, '2025-11-14 19:30:21', '2025-11-14 19:30:21'),
(8, 'Susan Froud', '1970-03-31', NULL, '4165731855', NULL, 'Dr Tahiri', 'Engineer', '41 Keenan Dr', 'none', '4165731855', 'smfroud@yahoo.ca', 'Al Corbeil', NULL, 'left knee issue for right handed curler', 'one month', 'very good', 'other', NULL, 1, 'none', 'none', 'none', 'knee', '2025-10-02', 'none', NULL, 'no', NULL, 'Al Corbeil', '7054407906', 'Susan Froud', 1, '136.226.76.163', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0', 'u', 0, '', 0, '2025-11-28 22:21:35', '2025-11-28 22:21:35'),
(9, 'Bailey Kostiuk', '1988-12-22', 'Physio - sports injury', '289-356-6878', NULL, NULL, 'Teacher', '303 centre st n', 'Gluten', '289-356-6878', 'Bailey_richardson2001@hotmail.com', NULL, '8192035973 WL', 'Sports injury. Fell on right shoulder (Nov 5)', 'Injury was Nov 5', 'Good', '', NULL, 2, 'Lisdexamphetamine', NULL, 'None', 'Fell on shoulder playing hockey.', '2025-11-05', 'C-section', '2010-06-04', 'No', NULL, 'Wyld Kostiuk', '905-801-5311', 'Bailey Kostiuk', 1, '99.232.216.43', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_6_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/396.0.833910942 Mobile/15E148 Safari/604.1', 'u', 0, '', 0, '2025-12-01 02:17:45', '2025-12-01 02:17:45'),
(10, 'Michel Laquerre', '1946-01-16', NULL, '7054352830', NULL, 'Dr.Onasonya', 'retired', '5 Stewart Avenue', 'latex', '705 435 2830', 'louiseandmichel@gmail.com', '705 440 7822', '6886067575 XN', 'injury', '7 weeks', 'good', 'other', NULL, 1, 'blood pressure and cholestoral', NULL, 'hip replacement', 'shoulder small tear', '2025-10-15', 'no', NULL, 'no', NULL, 'Louise Laquerre', '7054407822', NULL, 1, '104.28.133.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.7 Safari/605.1.15', 'u', 0, '', 0, '2025-12-11 00:48:40', '2025-12-11 00:48:40'),
(11, 'Adam Mohammed', '1991-10-13', NULL, '4165730735', NULL, 'Cyril Lacko', 'Developer', '135 Arnold Crescent', NULL, '4165730735', '13.adamm@Gmail.com', '4167021330', NULL, 'Knee Injury', '8 Months', NULL, 'other', NULL, 1, NULL, NULL, NULL, 'Meniscus/ Knee', '2025-02-22', NULL, NULL, 'NA', 'March 2025', 'Tara Doobay', '4167021330', 'Adam Mohammed', 1, '173.34.162.235', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36', 'u', 0, '', 0, '2025-12-15 09:16:34', '2025-12-15 09:16:34'),
(12, 'Krystal', '1986-02-20', 'Physiotherapy need for my shoulder, neck, arm, pinched nerve. Arm numb.', '416-888-6589', NULL, 'Dr garay', 'Heavy equipment operator', '4555 concession rd 2', 'Sulfa', '416-888-6589', 'Wacky_tobacky_baby@hotmail.com', NULL, NULL, 'Arm numb. Shoulder hurts. Pinched berve. Numb thumb.', '2 weeks', 'Ok', 'doctor', NULL, 1, 'Naproxen', 'Bulging disk in L\'s', NULL, NULL, NULL, NULL, NULL, 'Massage therapy', 'Feb 2022', 'Roy', '6478830360', 'Krystal snow', 1, '66.225.165.60', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', 'u', 0, '', 0, '2026-02-05 09:53:49', '2026-02-05 09:53:49'),
(13, 'Anna Rocha', '1972-10-25', 'Knee right', '416-833-8579', NULL, 'Dr Husian', 'Administrative', '29 Dowling Rd', NULL, '416-833-8579', 'annrocha72@gmail.com', NULL, NULL, 'Knee pain', '1 year', 'Good', 'other', 'Pain doctor', 2, 'Elextroxin', 'Hypothyroidism', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Anna Rocha', 1, '149.248.98.167', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36', 'u', 0, '', 0, '2026-03-20 03:52:45', '2026-03-20 03:52:45'),
(14, 'Jamie Minns', '1977-02-05', 'Physiotherapy', '7054249079', '6473820616', 'Dr. Melanie Wong', 'Teacher', '5683 20th Sideroad Utopia, ON L0M 1T0', 'Urushiol, lactose, gluten, pollen, dander', '647 382 0616', 'jlomunns@hotmail.com', '6472310616', '7084355853YR', 'Neck strain from head injury', 'Reinjury on April 1, 2026. Post concussion syndrome from 2015.', 'Fine', '', 'WSIB', 1, 'N/A', 'N/A', 'N/A', 'Head injury', '2026-04-01', 'Laparoscopy', '1998-04-13', 'N\\A', '2021', 'James Minns', '647 2310616', NULL, 1, '143.105.15.53', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Mobile/15E148 Safari/604.1', 'u', 0, '', 0, '2026-04-13 21:33:28', '2026-04-13 21:33:28'),
(15, 'Chris Dunbar', '1982-11-25', NULL, '6475422259', '4166064550', 'Damian Yohn', 'Border Services Superintendent', '70 Walker Blvd', NULL, '6475422259', 'cgdunbar@gmail.com', '6476868321', '3352485357KX', 'Sore lower back', '10 years', 'Good', 'other', 'Myself', 1, NULL, NULL, NULL, 'Bulged disc', '2016-03-25', NULL, NULL, NULL, 'May 2018', 'Nicole Dunbar', '6476868321', 'Chris Dunbar', 1, '209.29.99.153', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.4 Mobile/15E148 Safari/604.1', 'u', 0, '', 0, '2026-04-26 01:34:20', '2026-04-26 01:34:20'),
(16, 'Amanda McPherson', '1980-05-18', 'Physio', '6473849007', NULL, 'Dr Palao', 'Fitness instructor', '5877 County Road 13', NULL, '6473849007', 'al1880@yahoo.ca', '4166256072', NULL, 'Fell hit head now dizzy causing nausea', '2 months', 'Great', '', NULL, 2, 'None', NULL, 'Low blood pressure', 'Head', '2026-03-01', 'None', NULL, 'No', NULL, 'Chad', '4166256072', 'Amanda McPherson.', 1, '65.94.154.114', 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.7.5 Mobile/15E148 Safari/604.1', 'u', 0, '', 0, '2026-05-02 23:27:46', '2026-05-02 23:27:46');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_new_patient_problems`
--

CREATE TABLE `tasap_new_patient_problems` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `new_patient_form_id` bigint(20) UNSIGNED NOT NULL,
  `has_heart_problems` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_thyroid_problems` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_high_or_low_blood_pressure` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_taking_any_medications` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `taking_any_medication_list` text DEFAULT NULL,
  `has_diagnosed_with_arthritis` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_diabetes` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_ever_had_cancer` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_broken_a_bone` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_metal_fixations` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `do_you_smoke` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `smoke_much` text DEFAULT NULL,
  `has_abdominal_problems` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_previous_surgeries` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `previous_surgeries_list` text DEFAULT NULL,
  `are_you_pregnant` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_previous_car_accident` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `previous_car_accident_date` date DEFAULT NULL,
  `has_any_allergies` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_asthma` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_other_health_problems` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `has_any_other_reason` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Yes, 2=No',
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_new_patient_problems`
--

INSERT INTO `tasap_new_patient_problems` (`id`, `new_patient_form_id`, `has_heart_problems`, `has_thyroid_problems`, `has_high_or_low_blood_pressure`, `has_taking_any_medications`, `taking_any_medication_list`, `has_diagnosed_with_arthritis`, `has_diabetes`, `has_ever_had_cancer`, `has_broken_a_bone`, `has_metal_fixations`, `do_you_smoke`, `smoke_much`, `has_abdominal_problems`, `has_previous_surgeries`, `previous_surgeries_list`, `are_you_pregnant`, `has_previous_car_accident`, `previous_car_accident_date`, `has_any_allergies`, `has_asthma`, `has_other_health_problems`, `has_any_other_reason`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 2, 1, 2, 'TEST LIST', 1, 2, 1, 2, 1, 1, '12 Per Day', 1, 1, 'Knee Surgeries as stated above', 2, 1, '2021-03-11', 2, 1, 2, 1, 0, 0, '2025-03-19 23:48:49', '2025-03-19 23:48:49'),
(2, 2, 1, 2, 1, 2, 'testing', 2, 1, 2, 1, 2, 1, 'testing', 1, 1, 'testing', 2, 1, '2025-03-14', 2, 1, 2, 1, 0, 0, '2025-03-21 13:24:06', '2025-03-21 13:24:06'),
(3, 3, 1, 2, 1, 2, 'testing', 1, 2, 1, 2, 2, 1, 'testing', 1, 2, 'testing', 1, 2, '2025-07-05', 1, 2, 2, 1, 0, 0, '2025-07-09 11:55:57', '2025-07-09 11:55:57'),
(4, 4, 1, 2, 1, 2, '32', 1, 2, 1, 2, 1, 2, '39', 1, 2, '42', 1, 2, '2025-09-05', 1, 2, 1, 2, 0, 0, '2025-09-20 18:23:34', '2025-09-20 18:23:34'),
(5, 5, 2, 2, 2, 2, NULL, 2, 2, 2, 2, 2, 1, 'I smoke marijuana on occasion to help with pain, sleep, and anxiety', 2, 1, 'Procedure to resolve a vascular malformation', 2, 2, NULL, 2, 1, 1, 2, 0, 0, '2025-09-23 02:06:35', '2025-09-23 02:06:35'),
(6, 6, 2, 2, 2, 2, NULL, 2, 2, 2, 1, 2, 2, NULL, 2, 2, NULL, 2, 0, NULL, 2, 2, 2, 0, 0, 0, '2025-10-31 06:28:59', '2025-10-31 06:28:59'),
(7, 7, 2, 2, 2, 1, 'Alesse birth control', 2, 2, 2, 2, 2, 2, NULL, 2, 2, NULL, 2, 2, NULL, 2, 2, 2, 2, 0, 0, '2025-11-14 19:30:21', '2025-11-14 19:30:21'),
(8, 8, 2, 2, 2, 2, NULL, 2, 2, 2, 2, 2, 2, NULL, 2, 2, NULL, 2, 2, NULL, 2, 2, 2, 2, 0, 0, '2025-11-28 22:21:35', '2025-11-28 22:21:35'),
(9, 9, 2, 2, 2, 1, 'Lisdexamphetamine', 2, 2, 2, 1, 2, 2, NULL, 2, 0, NULL, 2, 1, NULL, 1, 2, 2, 2, 0, 0, '2025-12-01 02:17:45', '2025-12-01 02:17:45'),
(10, 10, 2, 2, 1, 1, 'blood pressure', 2, 2, 2, 2, 1, 2, NULL, 2, 1, 'hip replacement', 0, 2, NULL, 1, 2, 2, 2, 0, 0, '2025-12-11 00:48:40', '2025-12-11 00:48:40'),
(11, 11, 2, 2, 2, 2, NULL, 2, 2, 2, 2, 2, 2, NULL, 2, 2, NULL, 2, 2, NULL, 1, 1, 2, 2, 0, 0, '2025-12-15 09:16:34', '2025-12-15 09:16:34'),
(12, 12, 2, 2, 2, 1, 'Naproxen', 2, 2, 2, 1, 2, 2, NULL, 2, 2, NULL, 2, 2, NULL, 1, 2, 1, 2, 0, 0, '2026-02-05 09:53:49', '2026-02-05 09:53:49'),
(13, 13, 2, 1, 2, 1, 'Electroxin', 2, 2, 2, 2, 2, 2, NULL, 2, 2, NULL, 2, 2, NULL, 0, 2, 2, 2, 0, 0, '2026-03-20 03:52:45', '2026-03-20 03:52:45'),
(14, 14, 2, 2, 1, 2, 'N/A', 2, 2, 2, 2, 2, 2, NULL, 2, 1, 'Laparoscopy', 2, 2, NULL, 1, 2, 1, 2, 0, 0, '2026-04-13 21:33:28', '2026-04-13 21:33:28'),
(15, 15, 2, 2, 2, 2, NULL, 2, 2, 2, 2, 2, 2, NULL, 2, 2, NULL, 2, 2, NULL, 2, 2, 2, 2, 0, 0, '2026-04-26 01:34:20', '2026-04-26 01:34:20'),
(16, 16, 2, 2, 1, 2, NULL, 2, 2, 2, 2, 2, 2, NULL, 2, 2, NULL, 2, 2, NULL, 2, 2, 2, 2, 0, 0, '2026-05-02 23:27:46', '2026-05-02 23:27:46');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_oauth_access_tokens`
--

CREATE TABLE `tasap_oauth_access_tokens` (
  `id` varchar(100) NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `client_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `scopes` text DEFAULT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_oauth_auth_codes`
--

CREATE TABLE `tasap_oauth_auth_codes` (
  `id` varchar(100) NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `client_id` bigint(20) UNSIGNED NOT NULL,
  `scopes` text DEFAULT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_oauth_clients`
--

CREATE TABLE `tasap_oauth_clients` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `secret` varchar(100) DEFAULT NULL,
  `provider` varchar(255) DEFAULT NULL,
  `redirect` text NOT NULL,
  `personal_access_client` tinyint(1) NOT NULL,
  `password_client` tinyint(1) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_oauth_personal_access_clients`
--

CREATE TABLE `tasap_oauth_personal_access_clients` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `client_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_oauth_refresh_tokens`
--

CREATE TABLE `tasap_oauth_refresh_tokens` (
  `id` varchar(100) NOT NULL,
  `access_token_id` varchar(100) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_pages`
--

CREATE TABLE `tasap_pages` (
  `page_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `slug` varchar(128) NOT NULL,
  `descp` text DEFAULT NULL,
  `media_id` int(11) NOT NULL DEFAULT 0,
  `parent` int(11) NOT NULL DEFAULT 0,
  `template_id` int(11) NOT NULL,
  `is_private` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=private access(set access in usergroup),0=public page',
  `no_page_url_access` tinyint(4) NOT NULL DEFAULT 0,
  `note` varchar(256) DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_key` text DEFAULT NULL,
  `meta_descp` text DEFAULT NULL,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_pages`
--

INSERT INTO `tasap_pages` (`page_id`, `title`, `slug`, `descp`, `media_id`, `parent`, `template_id`, `is_private`, `no_page_url_access`, `note`, `meta_title`, `meta_key`, `meta_descp`, `c_order`, `status`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Home', 'home', '', 0, 0, 1, 1, 0, '', 'Alliston Physiotherapy &amp; Sports Rehabilitation', 'Alliston Physiotherapy &amp; Sports Rehabilitation', 'Alliston Physiotherapy & Sports Rehabilitation', 0, 1, 1, '2025-03-17 05:12:23', '2025-04-03 12:55:10'),
(2, 'Oops!', 'oops', '<p>The page you’re looking for could not be found.</p>', 0, 0, 2, 1, 0, '', '', '', '', 0, 1, 1, '2025-03-17 05:12:23', '2025-03-17 05:12:23'),
(3, 'About Us', 'about-us', '', 2, 0, 4, 1, 0, '', '', '', '', 0, 1, 1, '2025-03-17 05:12:23', '2025-03-17 06:45:26'),
(4, 'Contact Us', 'contact-us', '', 36, 0, 5, 1, 0, '', 'Contact Us', 'Contact Us', 'Contact Us', 0, 1, 1, '2025-03-17 05:12:23', '2025-03-18 18:17:38'),
(5, 'Thank You', 'contact-enq', '<p>Your message has been sent.</p>', 0, 0, 6, 1, 0, '', '', '', '', 0, 1, 1, '2025-03-17 05:12:23', '2025-03-17 05:12:23'),
(6, 'Our Team', 'our-team', NULL, 3, 0, 7, 1, 0, 'Our team page', 'Our team', 'Our team', 'Our team', 0, 1, 1, '2025-03-17 06:50:49', '2025-03-17 06:50:49'),
(7, 'Ruby Dhillon', 'ruby-dhillon', NULL, 3, 6, 8, 1, 0, '', '', '', '', 7, 1, 1, '2025-03-17 06:57:20', '2025-07-07 15:09:12'),
(8, 'Harmandeep Dhillon', 'harmandeep-dhillon', NULL, 3, 6, 8, 1, 0, '', '', '', '', 1, 1, 1, '2025-03-17 07:46:42', '2025-07-07 15:09:34'),
(9, 'Yaroslav Bilchenko', 'yaroslav-bilchenko', NULL, 3, 6, 8, 1, 0, '', 'Yaroslav Bilchenko', 'Yaroslav Bilchenko', 'Yaroslav Bilchenko', 2, 1, 1, '2025-03-17 07:47:55', '2025-07-07 15:09:51'),
(10, 'Vinayak Sharma', 'vinayak', NULL, 3, 6, 8, 1, 0, '', 'Vinayak', 'Vinayak', 'Vinayak', 6, 1, 1, '2025-03-17 07:48:54', '2025-07-07 15:11:21'),
(11, 'Esther Moses', 'esther', NULL, 3, 6, 8, 1, 0, '', 'Esther', 'Esther', 'Esther', 3, 1, 1, '2025-03-17 07:50:56', '2025-07-07 15:10:20'),
(12, 'Chandni Rami', 'chandni', NULL, 3, 6, 8, 1, 0, '', '', '', '', 4, 1, 1, '2025-03-17 07:52:28', '2025-07-07 15:10:35'),
(13, 'Twisha Patel', 'twisha-patel', NULL, 3, 6, 8, 1, 0, '', 'Twisha Patel', 'Twisha Patel', 'Twisha Patel', 5, 1, 1, '2025-03-17 07:53:41', '2025-07-07 15:11:02'),
(14, 'Razeena', 'razeena', NULL, 3, 6, 8, 1, 0, '', 'Razeena', 'Razeena', 'Razeena', 8, 2, 1, '2025-03-17 07:55:24', '2025-07-07 15:13:40'),
(15, 'Services', 'services', NULL, 14, 0, 9, 1, 0, 'Services page', 'Services - Compression Stocking Alliston - Compression therapy New tecumseth - Concussion Management Baxter - TMJ Treatments Borden - Shock Wave Therapy Tottenham - Motor Vehicle Accident Loretto, Rosemont, Everett, Simcoe County, Angus, Lisle, Mansfield, Mulmur, Innisfil', 'Services - Compression Stocking Alliston - Compression therapy New tecumseth - Concussion Management Baxter - TMJ Treatments Borden - Shock Wave Therapy Tottenham - Motor Vehicle Accident Loretto, Rosemont, Everett, Simcoe County, Angus, Lisle, Mansfield, Mulmur, Innisfil', 'Alliston Physiotherapy & Sports Rehabilitation offers services like compression stocking, compression therapy, concussion management, TMJ treatments, shock wave therapy and motor vehicle accident in Alliston, New tecumseth, Baxter, Borden, Beeton, Tottenham, Loretto, Rosemont, Everett, Simcoe County, Innisfil, Angus, Lisle, Mansfield and Mulmur.', 0, 1, 1, '2025-03-17 07:57:29', '2025-07-07 15:25:50'),
(16, 'Physiotherapy', 'physiotherapy', NULL, 18, 15, 10, 1, 0, '', 'Physiotherapy', 'Physiotherapy', 'Physiotherapy', 1, 1, 1, '2025-03-17 08:04:34', '2025-03-17 08:04:34'),
(17, 'Massage Therapy', 'massage-therapy', NULL, 33, 15, 10, 1, 0, '', 'Massage Therapy', 'Massage Therapy', 'Massage Therapy', 2, 1, 1, '2025-03-17 08:07:02', '2025-03-17 08:07:02'),
(18, 'Vestibular Rehabilitation', 'vestibular-rehabilitation', NULL, 15, 15, 10, 1, 0, '', 'Vestibular Rehabilitation', 'Vestibular Rehabilitation', 'Vestibular Rehabilitation', 3, 1, 1, '2025-03-17 08:07:56', '2025-03-17 08:07:56'),
(19, 'Concussion Management', 'concussion-management', NULL, 27, 15, 10, 1, 0, '', 'Concussion Management', 'Concussion Management', 'Concussion Management', 4, 1, 1, '2025-03-17 08:08:50', '2025-03-17 08:08:50'),
(20, 'TMJ Treatments', 'tmj-treatments', NULL, 16, 15, 10, 1, 0, '', 'TMJ Treatments', 'TMJ Treatments', 'TMJ Treatments', 5, 1, 1, '2025-03-17 08:09:47', '2025-03-17 08:09:47'),
(21, 'Shock Wave Therapy', 'shock-wave-therapy', NULL, 22, 15, 10, 1, 0, '', 'Shock Wave Therapy', 'Shock Wave Therapy', 'Shock Wave Therapy', 6, 1, 1, '2025-03-17 08:10:46', '2025-03-17 08:10:46'),
(22, 'Laser Therapy', 'laser-therapy', NULL, 20, 15, 10, 1, 0, '', 'Laser Therapy', 'Laser Therapy', 'Laser Therapy', 7, 1, 1, '2025-03-17 08:11:42', '2025-03-17 08:11:42'),
(23, 'Manipulation', 'manipulation', NULL, 17, 15, 10, 1, 0, '', 'Manipulation', 'Manipulation', 'Manipulation', 8, 1, 1, '2025-03-17 08:13:02', '2025-03-17 08:13:02'),
(24, 'Acupuncture', 'acupuncture', NULL, 19, 15, 10, 1, 0, '', 'Acupuncture', 'Acupuncture', 'Acupuncture', 9, 1, 1, '2025-03-17 08:14:10', '2025-03-17 08:14:10'),
(25, 'Sports Injury', 'sports-injury', NULL, 21, 15, 10, 1, 0, '', 'Sports Injury', 'Sports Injury', 'Sports Injury', 10, 1, 1, '2025-03-17 08:14:55', '2025-03-17 08:14:55'),
(26, 'Motor Vehicle Accident', 'motor-vehicle-accident', NULL, 26, 15, 10, 1, 0, '', 'Motor Vehicle Accident', 'Motor Vehicle Accident', 'Motor Vehicle Accident', 11, 1, 1, '2025-03-17 08:15:40', '2025-03-17 08:15:40'),
(27, 'Pre and Post Surgical Physiotherapy', 'pre-and-post-surgical-physiotherapy', NULL, 23, 15, 10, 1, 0, '', 'Pre and Post Surgical Physiotherapy', 'Pre and Post Surgical Physiotherapy', 'Pre and Post Surgical Physiotherapy', 12, 1, 1, '2025-03-17 08:17:07', '2025-03-17 08:17:07'),
(28, 'GLA:D', 'gla-d', NULL, 29, 15, 10, 1, 0, '', 'GLA:D', 'GLA:D', 'GLA:D', 13, 1, 1, '2025-03-17 08:17:56', '2025-03-17 08:17:56'),
(29, 'Polar Care Cube Therapy', 'polar-care-cube-therapy', NULL, 24, 15, 10, 1, 0, '', 'Polar Care Cube Therapy', 'Polar Care Cube Therapy', 'Polar Care Cube Therapy', 14, 1, 1, '2025-03-17 08:19:02', '2025-03-17 08:19:02'),
(30, 'Home Visits', 'home-visits', NULL, 25, 15, 10, 1, 0, '', 'Home Visits', 'Home Visits', 'Home Visits', 15, 1, 1, '2025-03-17 08:19:47', '2025-03-17 08:19:47'),
(31, 'Home Assessments', 'home-assessments', NULL, 29, 15, 10, 1, 0, '', 'Home Assessments', 'Home Assessments', 'Home Assessments', 16, 1, 1, '2025-03-17 08:20:25', '2025-03-17 08:20:25'),
(32, 'Custom Orthotics/Braces', 'custom-orthotics-braces', NULL, 30, 15, 10, 1, 0, '', 'Custom Orthotics/Braces', 'Custom Orthotics/Braces', 'Custom Orthotics/Braces', 17, 1, 1, '2025-03-17 08:21:21', '2025-03-17 08:21:21'),
(33, 'Personal Trainer', 'personal-trainer', NULL, 88, 15, 10, 1, 0, '', 'Personal Trainer', 'Personal Trainer', 'Personal Trainer', 18, 1, 1, '2025-03-17 08:22:29', '2025-07-07 15:29:30'),
(34, 'New Patient Form', 'new-patient-form', NULL, 34, 0, 11, 1, 0, '', 'New Patient Form', 'New Patient Form', 'New Patient Form', 0, 1, 1, '2025-03-17 08:24:28', '2025-03-17 08:24:28'),
(35, 'Our Facility', 'facility', NULL, 89, 0, 12, 1, 0, '', 'Facility', 'Facility', 'Facility', 0, 1, 1, '2025-03-17 08:25:16', '2025-07-08 19:23:01'),
(36, 'Body Conditions', 'body-conditions', NULL, 35, 0, 14, 1, 0, '', '', '', '', 0, 1, 1, '2025-03-17 08:27:10', '2025-03-17 08:27:10'),
(37, 'Book Appointment', 'book-appointment', NULL, 37, 0, 13, 1, 0, '', 'Book appointment', 'Book appointment', 'Book appointment', 0, 1, 1, '2025-03-17 08:36:38', '2025-03-17 08:36:38'),
(38, 'Margi Patel', 'margi-patel', NULL, 3, 6, 8, 1, 0, '', '', '', '', 9, 2, 1, '2025-03-31 14:24:04', '2025-07-07 15:13:18'),
(39, 'Pushti Patel', 'pushti-patel', NULL, 3, 6, 8, 1, 0, '', '', '', '', 8, 1, 1, '2025-03-31 14:25:58', '2025-07-07 15:12:05'),
(40, 'Radha Seenarine', 'radha', NULL, 3, 6, 8, 1, 0, '', '', '', '', 9, 1, 1, '2025-03-31 14:30:06', '2025-07-07 15:12:27'),
(41, 'Authorization', 'authorization', NULL, 0, 0, 16, 1, 0, '', 'authorization', 'authorization', 'authorization', 0, 1, 1, '2026-03-06 14:36:14', '2026-03-06 14:36:14'),
(42, 'Health Questionnaire', 'health-questionnaire', NULL, 0, 0, 17, 1, 0, '', 'Health Questionnaire', 'Health Questionnaire', 'Health Questionnaire', 0, 1, 1, '2026-03-06 14:36:53', '2026-03-06 14:36:53'),
(43, 'Informed consent for physiotherapy treatment', 'informed-consent-for-physiotherapy-treatment', NULL, 0, 0, 18, 1, 0, '', 'Informed consent for physiotherapy treatment', 'Informed consent for physiotherapy treatment', 'Informed consent for physiotherapy treatment', 0, 1, 1, '2026-03-06 14:37:50', '2026-03-06 14:37:50'),
(44, 'Respectful conduct policy', 'respectful-conduct-policy', NULL, 0, 0, 19, 1, 0, '', 'Respectful conduct policy', 'Respectful conduct policy', 'Respectful conduct policy', 0, 1, 1, '2026-03-06 14:38:21', '2026-03-06 14:38:21'),
(45, 'Consent soft tissue release', 'consent-soft-tissue-release', NULL, 0, 0, 20, 1, 0, '', 'Consent soft tissue release', 'Consent soft tissue release', 'Consent soft tissue release', 0, 1, 1, '2026-03-06 14:38:53', '2026-03-06 14:38:53'),
(46, 'Waiver', 'waiver', NULL, 0, 0, 21, 1, 0, '', 'Waiver', 'Waiver', 'Waiver', 0, 1, 1, '2026-03-06 14:39:15', '2026-03-06 14:39:15'),
(47, 'Sports Rehabilitation', 'sports-rehabilitation', NULL, 0, 0, 22, 1, 0, '', 'Sports Rehabilitation', 'Sports Rehabilitation', 'Sports Rehabilitation', 0, 1, 1, '2026-03-06 14:40:02', '2026-03-06 14:40:02');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_password_reset_tokens`
--

CREATE TABLE `tasap_password_reset_tokens` (
  `email` varchar(255) NOT NULL,
  `token` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_patient_authorizations`
--

CREATE TABLE `tasap_patient_authorizations` (
  `id` int(11) NOT NULL,
  `patient_name` varchar(255) DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `partA_signature` varchar(255) DEFAULT NULL,
  `partA_witness` varchar(255) DEFAULT NULL,
  `partA_date1` date DEFAULT NULL,
  `partA_date2` date DEFAULT NULL,
  `partB_signature` varchar(255) DEFAULT NULL,
  `partB_witness` varchar(255) DEFAULT NULL,
  `partB_date1` date DEFAULT NULL,
  `partB_date2` date DEFAULT NULL,
  `tests` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_patient_authorizations`
--

INSERT INTO `tasap_patient_authorizations` (`id`, `patient_name`, `dob`, `partA_signature`, `partA_witness`, `partA_date1`, `partA_date2`, `partB_signature`, `partB_witness`, `partB_date1`, `partB_date2`, `tests`, `created_at`, `updated_at`) VALUES
(1, 'Ubes Aslam 1', '1990-11-25', 'Ubes 1', 'Rahul 1', '2026-05-01', '2026-05-02', 'Owais Aslam 1', 'Rajesh 1', '2026-05-03', '2026-05-04', '[\"xray\",\"ct\",\"mri\",\"ultrasound\"]', '2026-05-14 12:59:07', '2026-05-14 13:59:02'),
(2, 'suganya', '1989-05-11', 'demo', 'demo', '2026-05-15', '2026-05-15', 'demo', 'demo', '2026-05-15', '2026-05-15', '[\"xray\",\"ct\",\"mri\",\"ultrasound\"]', '2026-05-15 13:19:50', '2026-05-15 13:19:50'),
(3, 'test', '2026-05-14', 'test', 'test', '2026-05-28', '2026-05-21', 'test', 'test', '2026-05-28', '2026-05-28', '[\"ct\",\"mri\"]', '2026-05-29 00:22:03', '2026-05-29 00:22:03');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_personal_access_tokens`
--

CREATE TABLE `tasap_personal_access_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `tokenable_type` varchar(255) NOT NULL,
  `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_respectful_conduct_policy`
--

CREATE TABLE `tasap_respectful_conduct_policy` (
  `id` int(11) NOT NULL,
  `patient_signature` varchar(255) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `insurance_name` varchar(255) DEFAULT NULL,
  `member_name` varchar(255) DEFAULT NULL,
  `policy_number` varchar(255) DEFAULT NULL,
  `id_number` varchar(255) DEFAULT NULL,
  `total_max_for_physio` varchar(255) DEFAULT NULL,
  `physio_percentage` varchar(255) DEFAULT NULL,
  `total_for_massage` varchar(255) DEFAULT NULL,
  `massage_percentage` varchar(255) DEFAULT NULL,
  `total_max_for_braces` varchar(255) DEFAULT NULL,
  `braces_percentage` varchar(255) DEFAULT NULL,
  `policy_year` varchar(255) DEFAULT NULL,
  `update_on` date DEFAULT NULL,
  `update_by` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tasap_respectful_conduct_policy`
--

INSERT INTO `tasap_respectful_conduct_policy` (`id`, `patient_signature`, `date`, `insurance_name`, `member_name`, `policy_number`, `id_number`, `total_max_for_physio`, `physio_percentage`, `total_for_massage`, `massage_percentage`, `total_max_for_braces`, `braces_percentage`, `policy_year`, `update_on`, `update_by`, `created_at`, `updated_at`) VALUES
(1, 'Owais 1', '2026-05-14', 'Health 1', 'Owais 1', 'HTC012345', 'TAS00075', '1000', '10', '2500', '5', '4500', '15', '2026', '2026-05-14', 'Owais Aslam 1', '2026-05-14 13:10:22', '2026-05-14 16:32:30'),
(2, 'demo', '2026-05-14', 'demo', 'demo', '532', '235', '566', '50', '600', '60', '650', '80', '2025', '2026-05-16', 'demo', '2026-05-15 13:30:22', '2026-05-15 13:30:22');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_role_module_method_rights`
--

CREATE TABLE `tasap_role_module_method_rights` (
  `role_module_method_right_id` int(10) UNSIGNED NOT NULL,
  `role_id` int(11) NOT NULL DEFAULT 1,
  `module_id` int(11) NOT NULL,
  `method_id` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_role_module_method_rights`
--

INSERT INTO `tasap_role_module_method_rights` (`role_module_method_right_id`, `role_id`, `module_id`, `method_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 1, 1, 1, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(2, 1, 2, 2, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(3, 1, 3, 11, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(4, 1, 3, 12, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(5, 1, 3, 13, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(6, 1, 3, 14, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(7, 1, 3, 15, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(8, 1, 3, 16, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(9, 1, 3, 17, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(10, 1, 3, 18, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(11, 1, 4, 31, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(12, 1, 4, 32, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(13, 1, 4, 33, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(14, 1, 4, 34, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(15, 1, 4, 35, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(16, 1, 4, 36, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(17, 1, 5, 51, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(18, 1, 5, 52, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(19, 1, 5, 53, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(20, 1, 5, 54, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(21, 1, 5, 55, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(22, 1, 6, 71, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(23, 1, 6, 72, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(24, 1, 6, 73, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(25, 1, 6, 74, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(26, 1, 6, 75, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(27, 1, 6, 76, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(28, 1, 6, 77, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(29, 1, 6, 78, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(30, 1, 6, 79, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(31, 1, 6, 80, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(32, 1, 6, 81, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(33, 1, 7, 91, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(34, 1, 7, 92, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(35, 1, 7, 93, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(36, 1, 7, 94, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(37, 1, 7, 95, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(38, 1, 7, 96, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(39, 1, 8, 111, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(40, 1, 8, 112, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(41, 1, 8, 113, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(42, 1, 8, 114, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(43, 1, 8, 115, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(44, 1, 8, 116, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(45, 1, 9, 131, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(46, 1, 9, 132, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(47, 1, 9, 133, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(48, 1, 9, 134, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(49, 1, 9, 135, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(50, 1, 9, 136, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(51, 1, 9, 137, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(52, 1, 10, 151, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(53, 1, 10, 152, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(54, 1, 10, 153, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(55, 1, 10, 154, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(56, 1, 10, 155, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(57, 1, 10, 156, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(58, 1, 11, 171, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(59, 1, 11, 172, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(60, 1, 11, 173, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(61, 1, 11, 174, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(62, 1, 11, 175, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(63, 1, 11, 176, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(64, 1, 12, 191, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(65, 1, 12, 192, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(66, 1, 12, 193, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(67, 1, 12, 194, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(68, 1, 12, 195, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(69, 1, 12, 196, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(70, 1, 13, 211, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(71, 1, 13, 212, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(72, 1, 13, 213, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(73, 1, 13, 214, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(74, 1, 13, 215, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(75, 1, 13, 216, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(76, 1, 14, 231, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(77, 1, 14, 232, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(78, 1, 14, 233, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(79, 1, 14, 234, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(80, 1, 14, 235, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(81, 1, 14, 236, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(82, 1, 15, 251, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(83, 1, 15, 252, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(84, 1, 15, 253, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(85, 1, 15, 254, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(86, 1, 15, 255, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(87, 1, 15, 256, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(88, 1, 16, 271, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(89, 1, 16, 272, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(90, 1, 16, 273, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(91, 1, 16, 274, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(92, 1, 17, 291, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(93, 1, 17, 292, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(94, 1, 17, 293, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(95, 1, 17, 294, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(96, 1, 17, 295, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(97, 1, 17, 296, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(98, 1, 17, 297, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(99, 1, 17, 298, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(100, 1, 18, 311, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(101, 1, 18, 312, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(102, 1, 18, 313, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(103, 1, 18, 314, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(104, 1, 18, 315, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(105, 1, 18, 316, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(106, 1, 18, 317, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(107, 1, 19, 331, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(108, 1, 19, 332, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(109, 1, 19, 333, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(110, 1, 19, 334, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(111, 1, 19, 335, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(112, 1, 19, 336, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(113, 1, 20, 351, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(114, 1, 20, 352, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(115, 1, 20, 353, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL),
(116, 1, 20, 354, '2025-03-19 23:40:37', '2025-03-19 23:40:37', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_sessions`
--

CREATE TABLE `tasap_sessions` (
  `id` varchar(255) NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `payload` longtext NOT NULL,
  `last_activity` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_sessions`
--

INSERT INTO `tasap_sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES
('1n4jsmlk2qZgsrVeFr3FMkQvGCBqpUyy0AEEOwP1', NULL, '148.251.41.182', 'Mozilla/5.0 (compatible; SERankingBacklinksBot/1.0; +https://seranking.com/backlinks-crawler)', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiQWlGZDlyOVA5emZVOVBpakg5YndZZ2ZrNTQ5WTBxcUdRUmVXYm92UyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NjE6Imh0dHBzOi8vYnJzZGVtby5uZXQvYWxsaXN0b24tcGh5c2lvdGhlcmFweS5icnNkZW1vLm5ldC9wdWJsaWMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', 1779977457),
('Dki2944J1mSBWd9N7EzvIi6bkeeSiyxVhcnbvQLq', NULL, '184.148.97.225', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiOTZqcDRTVHBDY1lBUG1BUFFkSU5aRWg0WmJGNHhHUjloaTZHUXBvRCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NjM6Imh0dHBzOi8vYWxsaXN0b24tcGh5c2lvdGhlcmFweS5icnNkZW1vLm5ldC9wdWJsaWMvYXV0aG9yaXphdGlvbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1779976806),
('Faj1qOiR9peqs2HWV2NWvSR5CMdNlNF6HNPKFuZZ', NULL, '173.35.228.11', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoieUR0ZGFHdWF5WnZTMDM3REtOd3d6VU1RZmQwdEZ6bWQ1c3NYVURiQSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NzE6Imh0dHBzOi8vYWxsaXN0b24tcGh5c2lvdGhlcmFweS5icnNkZW1vLm5ldC9wdWJsaWMvc3BvcnRzLXJlaGFiaWxpdGF0aW9uIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', 1779973636),
('oGlqCjS4MPA1wfh0FJmPDzrwggTgwvUFaPX2oRGa', NULL, '147.135.213.27', 'Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiRDVaVmRGQk5GVWwxS1dyR2xZdFhrOVhZdlFhR0hqSUliMkxnRUc3eiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDk6Imh0dHBzOi8vYWxsaXN0b24tcGh5c2lvdGhlcmFweS5icnNkZW1vLm5ldC9wdWJsaWMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', 1779975160),
('PnkcQHTuenY2pvYE42MmPY7s53ir4D8toDDOaDsI', NULL, '148.251.41.182', 'Mozilla/5.0 (compatible; SERankingBacklinksBot/1.0; +https://seranking.com/backlinks-crawler)', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiQjN4UnpEVXdvMVVCbVJodm9CRXZDNXdWNXpXYTZGNktjQkhQUmFJQyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NjE6Imh0dHBzOi8vYnJzZGVtby5uZXQvYWxsaXN0b24tcGh5c2lvdGhlcmFweS5icnNkZW1vLm5ldC9wdWJsaWMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', 1779977455),
('tE4rd0eyv9Qqi39soii2eO7tmlz4LYsLyeJx7tCB', NULL, '101.0.62.89', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:151.0) Gecko/20100101 Firefox/151.0', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiZWI1Y2JuSTdKT2JKcERjbjBjNVhscnhtRDdoQkZSMHhHWmI5eGdRRyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NzE6Imh0dHBzOi8vYWxsaXN0b24tcGh5c2lvdGhlcmFweS5icnNkZW1vLm5ldC9wdWJsaWMvc3BvcnRzLXJlaGFiaWxpdGF0aW9uIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', 1780027987),
('YyKhy5mJKtq46mRRCr3p5ZV0YLv3uoKZDEkP0w6b', NULL, '101.0.62.89', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:151.0) Gecko/20100101 Firefox/151.0', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiWGFOR0E4aW82Wmk3WFFXTUVSR2txalR4YmJnQUNjZTFvanlPdWZWciI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NjM6Imh0dHBzOi8vYWxsaXN0b24tcGh5c2lvdGhlcmFweS5icnNkZW1vLm5ldC9wdWJsaWMvYXV0aG9yaXphdGlvbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1779988925);

-- --------------------------------------------------------

--
-- Table structure for table `tasap_settings`
--

CREATE TABLE `tasap_settings` (
  `stng_id` int(10) UNSIGNED NOT NULL,
  `field_type` enum('','image','text','password','textarea','editor','radio','dropdown') NOT NULL,
  `field_label` varchar(64) DEFAULT NULL,
  `option_key` varchar(64) NOT NULL,
  `option_value` text DEFAULT NULL,
  `options_label` text DEFAULT NULL COMMENT 'Must be in JSON format.',
  `options_value` text DEFAULT NULL COMMENT 'Must be in JSON format.',
  `type` enum('','subscription','general','mail_setting','options','social','product','custom') NOT NULL,
  `field_info` varchar(255) DEFAULT NULL,
  `is_required` enum('','n','y') NOT NULL DEFAULT 'n' COMMENT 'n=no,y=yes',
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `updated_at` timestamp NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_settings`
--

INSERT INTO `tasap_settings` (`stng_id`, `field_type`, `field_label`, `option_key`, `option_value`, `options_label`, `options_value`, `type`, `field_info`, `is_required`, `c_order`, `status`, `updated_id`, `updated_at`) VALUES
(1, 'text', 'Title', 'title', 'Alliston Physiotherapy', NULL, NULL, 'general', 'Used as from name of the send email/s.', 'y', 1, 1, 1, '2025-09-20 18:16:11'),
(2, 'image', 'Logo', 'logo', '1742208443-logo.png', NULL, NULL, 'general', 'Only JPG / JPEG and PNG image allowed.<br/>For best view image size should be in W=---px, H=---px and under 250KB.', 'n', 2, 1, 1, '2025-09-20 18:16:11'),
(3, 'image', 'Email Template Logo', 'email_template_logo', '1742208652-footer_logo.png', NULL, NULL, 'general', 'Only JPG / JPEG and PNG image allowed.<br/>For best view image size should be in W=---px, H=---px and under 250KB.', 'n', 3, 1, 1, '2025-09-20 18:16:11'),
(4, 'editor', 'Address', 'office_address', '27 Victoria Street E, Alliston, ON L9R 1T9, Canada', NULL, NULL, 'general', '', 'n', 4, 1, 1, '2025-09-20 18:16:11'),
(5, 'text', 'Google Map Link', 'google_map_link', NULL, NULL, NULL, 'general', '', 'n', 5, 1, 1, '2025-09-20 18:16:11'),
(6, 'editor', 'Google Map', 'google_map', '<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2862.584353043418!2d-79.868112!3d44.1538141!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x882aeef382ec5ffd%3A0x7b4e832692e2da2a!2sAlliston%20Physiotherapy%20%26%20Sports%20Rehabilitation!5e0!3m2!1sen!2sin!4v1740475466184!5m2!1sen!2sin\" width=\"100%\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe>', NULL, NULL, 'general', '', 'n', 6, 1, 1, '2025-09-20 18:16:11'),
(7, 'text', 'Phone', 'office_phone', '705-434-0645', NULL, NULL, 'general', '', 'n', 7, 1, 1, '2025-09-20 18:16:11'),
(8, 'editor', 'Footer Company Info', 'footer_company_info', '<p><br></p>', NULL, NULL, 'general', '', 'n', 8, 1, 1, '2025-09-20 18:16:11'),
(9, 'editor', 'Company Timing', 'company_timing', '<div class=\"pq-footer-block\">\r\n              <h4 class=\"footer-title\">Clinic Hours</h4>\r\n               \r\n                 <p class=\"text-white\"> Monday : 8.30am to 7.30pm <br>\r\n\r\n				 Tuesday : 8.30am to 7.30pm<br>\r\n				 Wednesday : 8.30am to 7.30pm<br>\r\n				 Thursday : 8.30am to 7.30pm<br>\r\n				 Friday : 8.30am to 7.30pm<br>\r\n				 Saturday : Closed<br>\r\n				 Sunday : Closed<br>\r\n				 </p>\r\n				  \r\n                 \r\n              </div>', NULL, NULL, 'general', '', 'n', 9, 1, 1, '2025-09-20 18:16:11'),
(10, 'text', 'Facebook Link', 'social_media_1_link', '#', NULL, NULL, 'general', '', 'n', 10, 1, 1, '2025-09-20 18:16:11'),
(11, 'text', 'X Link', 'social_media_2_link', NULL, NULL, NULL, 'general', '', 'n', 11, 1, 1, '2025-09-20 18:16:11'),
(12, 'text', 'Instagram Link', 'social_media_3_link', 'https://www.instagram.com/alliston.physiotherapy?igsh=dGJ6MGJsdnFnOXU0&utm_source=qr', NULL, NULL, 'general', '', 'n', 12, 1, 1, '2025-09-20 18:16:11'),
(13, 'text', 'Pinterest Link', 'social_media_4_link', NULL, NULL, NULL, 'general', '', 'n', 13, 1, 1, '2025-09-20 18:16:11'),
(15, 'text', 'To Email Address', 'to_email', 'info@allistonphysiotherapy.ca', NULL, NULL, 'general', 'Must be a valid email address.<br>This email is used for website to email communication for contact us enquiries.', 'y', 14, 1, 1, '2025-09-20 18:16:11'),
(29, 'textarea', 'Global Frontend CSS', 'global_frontend_css', NULL, NULL, NULL, 'general', 'Please define Your CSS without open & close \"style\" tags<br/>NOTE: It will applicable to all the frontend pages', 'n', 29, 1, 1, '2025-09-20 18:16:11'),
(30, 'textarea', 'Global Backend CSS', 'global_backend_css', NULL, NULL, NULL, 'general', 'Please define Your CSS without open & close \"style\" tags<br/>NOTE: It will applicable to all the backend pages', 'n', 30, 1, 1, '2025-09-20 18:16:11'),
(31, 'dropdown', 'Mail Protocol', 'mail_protocol', '2', '[\"SMTP\"]', '[2]', 'mail_setting', '', 'y', 1, 1, 1, '2025-09-20 10:35:09'),
(32, 'dropdown', 'SMTP Secure', 'smtp_secure', 'tls', '[\"TLS\", \"SSL\"]', '[\"tls\", \"ssl\"]', 'mail_setting', 'If you\'re using secure domain choose SSL, If not then use TLS. <br/>Secure transfer enabled REQUIRED for Gmail<br/>If No secure type then leave as blank', 'y', 2, 1, 1, '2025-09-20 10:35:09'),
(33, 'text', 'SMTP Hostname', 'smtp_hostname', 'smtp-relay.brevo.com', NULL, NULL, 'mail_setting', 'Hostname of the mail server. <br/>If Email run from server then use Domain name like \"example.com\" and if Email run from Gmail then use \"smtp.gmail.com\"', 'y', 3, 1, 1, '2025-09-20 10:35:09'),
(34, 'text', 'SMTP Port', 'smtp_port', '587', NULL, NULL, 'mail_setting', 'Port of the SMTP like to be 25, 80, 465 or 587. <br/>If Email run from server then use 25 or 80 and if Email run from Gmail then use 465 or 587', 'y', 4, 1, 1, '2025-09-20 10:35:09'),
(35, 'text', 'SMTP Username', 'smtp_username', 'authversova@gmail.com', NULL, NULL, 'mail_setting', 'Username for SMTP authentication any valid email created in your domain', 'y', 5, 1, 1, '2025-09-20 10:35:09'),
(36, 'password', 'SMTP Password', 'smtp_password', 'JOcP6ax4pN5KRWj9', NULL, NULL, 'mail_setting', 'Password for SMTP authentication(Password of above email)', 'y', 6, 1, 1, '2025-09-20 10:35:09'),
(37, 'text', 'From Email Address', 'from_email', 'info@allistonphysiotherapy.ca', NULL, NULL, 'mail_setting', 'Must be a valid email address.<br>This email is used for website from email communication.', 'y', 7, 1, 1, '2025-09-20 10:35:09'),
(61, 'text', 'Default Product Price', 'default_product_price', '120', NULL, NULL, 'options', NULL, 'y', 1, 1, 1, '2025-03-17 05:12:21'),
(62, 'text', 'Default Product Quantity', 'default_product_quantity', '10', NULL, NULL, 'options', NULL, 'y', 2, 1, 1, '2025-03-17 05:12:21'),
(63, 'text', 'Tiktok Link', 'social_media_5_link', 'http://tiktok.com/@allistonphysio?_t=8fDg7JxHOXW&_r=1', NULL, NULL, 'general', '', 'n', 13, 1, 1, '2025-09-20 18:16:11');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_sports_rehabilitation`
--

CREATE TABLE `tasap_sports_rehabilitation` (
  `id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `injured_area` varchar(255) DEFAULT NULL,
  `assessment_date` date DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `hear_about` text DEFAULT NULL,
  `treatment_plan` varchar(255) DEFAULT NULL,
  `excercise` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tasap_sports_rehabilitation`
--

INSERT INTO `tasap_sports_rehabilitation` (`id`, `name`, `dob`, `injured_area`, `assessment_date`, `email`, `address`, `phone`, `hear_about`, `treatment_plan`, `excercise`, `created_at`, `updated_at`) VALUES
(1, 'Ubes Aslam 1', '1990-11-25', 'Knee 1', '2026-05-14', 'ubes@tastechnologies.com1', 'Bhopal 1', '9098710665', '[\"google\",\"friends\",\"family\"]', 'No', 'No', '2026-05-14 13:15:58', '2026-05-14 16:35:06'),
(2, 'demo', '2026-05-15', 'demo', '2026-05-15', 'test@test.com', 'demo', '4167890987', '[\"google\",\"friends\",\"reff_by_doctor\"]', 'demo', 'demo', '2026-05-15 13:33:46', '2026-05-15 13:33:46');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_template`
--

CREATE TABLE `tasap_template` (
  `template_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `slug` varchar(128) NOT NULL,
  `file_name` varchar(100) NOT NULL,
  `descp` text DEFAULT NULL,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `permalink_structure` enum('default','parent') NOT NULL DEFAULT 'default',
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tasap_template`
--

INSERT INTO `tasap_template` (`template_id`, `title`, `slug`, `file_name`, `descp`, `c_order`, `permalink_structure`, `status`, `created_id`, `updated_id`, `created_at`, `updated_at`) VALUES
(1, 'Home Template', 'home', 'index', 'Used for home page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(2, 'Error / 404 Template', 'error-404', '404', 'Used for error / 404 page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(3, 'Default Template', 'page', 'page', 'Used for cms pages only.', 0, 'default', 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(4, 'About Template', 'about-us', 'about-us', 'Used for about page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:44:16'),
(5, 'Contact Template', 'contact-us', 'contact-us', 'Used for contact page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:43:38'),
(6, 'Thank You Template', 'thank-you', 'thank-you', 'Used for thank you page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:12:22', '2025-03-17 05:12:22'),
(7, 'Our team Template', 'our-team', 'our-team', 'Used for our team page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:47:03', '2025-03-17 05:47:03'),
(8, 'Our team Member Template', 'team-member', 'team-member', 'Used for our team Member page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:52:18', '2025-03-17 05:52:18'),
(9, 'Service Parent Template', 'services', 'services', 'Used for parent Service page only.', 0, 'default', 1, 1, 1, '2025-03-17 05:59:38', '2025-03-17 05:59:38'),
(10, 'Service Child  Pages Template', 'service', 'service', 'Used for service pages only.', 0, 'default', 1, 1, 1, '2025-03-17 06:00:06', '2025-03-17 06:00:06'),
(11, 'New Patient Template', 'new-patient', 'new-patient', 'Used for new patient page only.', 0, 'default', 1, 1, 1, '2025-03-17 06:01:07', '2025-03-17 06:01:07'),
(12, 'Facility Template', 'facility', 'facility', 'Used for Our Facility page only.', 0, 'default', 1, 1, 1, '2025-03-17 06:04:32', '2025-07-08 17:55:49'),
(13, 'Book Appointment Template', 'book-appointment', 'book-appointment', 'Used for appointment page only.', 0, 'default', 1, 1, 1, '2025-03-17 06:06:02', '2025-03-18 12:29:42'),
(14, 'Body Conditions Template', 'body-conditions', 'body-conditions', 'Used for body conditions page only.', 0, 'default', 1, 1, 1, '2025-03-17 06:08:24', '2025-03-17 06:08:24'),
(16, 'Authorization', 'authorization', 'authorization', 'Used for new authorization page only.', 0, 'default', 1, 1, 1, '2026-03-06 14:10:22', '2026-03-06 14:10:22'),
(17, 'Health Questionnaire', 'health-questionnaire', 'health-questionnaire', 'Used for Health Questionnaire page only.', 0, 'default', 1, 1, 1, '2026-03-06 14:12:36', '2026-03-06 14:12:36'),
(18, 'Informed Consent for Physiotherapy Treatment', 'informed-consent-for-physiotherapy-treatment', 'informed-consent-physiotherapy-treatment', 'Used for Informed Consent for Physiotherapy Treatment page only.', 0, 'default', 1, 1, 1, '2026-03-06 14:17:04', '2026-03-06 14:17:04'),
(19, 'Respectful conduct policy', 'respectful-conduct-policy', 'respectful-conduct-policy', 'Used for Respectful conduct policy page only.', 0, 'default', 1, 1, 1, '2026-03-06 14:19:05', '2026-03-06 14:19:05'),
(20, 'Consent for soft tissue release', 'consent-for-soft-tissue-release', 'consent-soft-tissue-release', 'Used for Consent for soft tissue release page only.', 0, 'default', 1, 1, 1, '2026-03-06 14:20:34', '2026-03-06 14:20:34'),
(21, 'Waiver', 'waiver', 'waiver', 'Used for waiver page only.', 0, 'default', 1, 1, 1, '2026-03-06 14:21:12', '2026-03-06 14:21:12'),
(22, 'Sports rehabilitation', 'sports-rehabilitation', 'sports-rehabilitation', 'Used for Sports rehabilitation page only.', 0, 'default', 1, 1, 1, '2026-03-06 14:23:12', '2026-03-06 14:23:12');

-- --------------------------------------------------------

--
-- Table structure for table `tasap_testimonial`
--

CREATE TABLE `tasap_testimonial` (
  `tmnl_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(90) NOT NULL,
  `descp` text DEFAULT NULL,
  `media_id` int(11) NOT NULL DEFAULT 0,
  `company` varchar(128) DEFAULT NULL,
  `designation` varchar(128) DEFAULT NULL,
  `c_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_id` int(11) NOT NULL DEFAULT 0,
  `updated_id` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_users`
--

CREATE TABLE `tasap_users` (
  `u_id` bigint(20) UNSIGNED NOT NULL,
  `acc_type` enum('','a','s') NOT NULL COMMENT 'a=Application,s=Social',
  `s_acc_medium` enum('','g','f','m','a') DEFAULT NULL COMMENT 'g=Google,f=Facebook,m=Microsoft,a=Apple',
  `s_account` varchar(30) DEFAULT NULL,
  `f_name` varchar(50) NOT NULL,
  `l_name` varchar(50) DEFAULT NULL,
  `email` varchar(50) NOT NULL,
  `password` varchar(64) DEFAULT NULL,
  `forget_code` varchar(50) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `about` varchar(255) DEFAULT NULL,
  `birthday` varchar(10) DEFAULT NULL,
  `p_picture` varchar(255) DEFAULT NULL,
  `company` varchar(100) DEFAULT NULL,
  `profile` text DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `lng` float DEFAULT NULL,
  `address` text DEFAULT NULL,
  `apartment` varchar(255) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `pincode` varchar(10) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `is_approved` enum('','n','y') NOT NULL DEFAULT 'n' COMMENT 'n=no,y=yes',
  `note` text DEFAULT NULL,
  `is_used` enum('','n','y') NOT NULL DEFAULT 'n' COMMENT 'n=no,y=yes',
  `u_created_medium` enum('','w','ap','ad') DEFAULT NULL COMMENT 'w=Website,ap=App,ad=Admin',
  `created_by` enum('','a','u') NOT NULL COMMENT 'a=admin,u=user',
  `created_id` int(11) NOT NULL,
  `u_updated_medium` enum('','w','ap','ad') DEFAULT NULL COMMENT 'w=Website,ap=App,ad=Admin',
  `updated_by` enum('','a','u') NOT NULL COMMENT 'a=admin,u=user',
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `updated_id` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `migration_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tasap_waiver`
--

CREATE TABLE `tasap_waiver` (
  `id` int(11) NOT NULL,
  `name_of_professional` varchar(255) DEFAULT NULL,
  `patient_name` varchar(255) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tasap_waiver`
--

INSERT INTO `tasap_waiver` (`id`, `name_of_professional`, `patient_name`, `date`, `created_at`, `updated_at`) VALUES
(1, 'Software Developer 1', 'Owais Aslam 1', '2026-05-14', '2026-05-14 13:14:23', '2026-05-14 16:33:26'),
(2, 'demo', 'demo', '2026-05-15', '2026-05-15 13:32:34', '2026-05-15 13:32:34');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `tasap_admin`
--
ALTER TABLE `tasap_admin`
  ADD PRIMARY KEY (`admin_id`),
  ADD UNIQUE KEY `tasap_admin_username_unique` (`username`),
  ADD UNIQUE KEY `tasap_admin_email_unique` (`email`);

--
-- Indexes for table `tasap_admin_role`
--
ALTER TABLE `tasap_admin_role`
  ADD PRIMARY KEY (`role_id`),
  ADD UNIQUE KEY `tasap_admin_role_title_unique` (`title`);

--
-- Indexes for table `tasap_blog_categories`
--
ALTER TABLE `tasap_blog_categories`
  ADD PRIMARY KEY (`blog_cat_id`),
  ADD UNIQUE KEY `tasap_blog_categories_title_unique` (`title`);

--
-- Indexes for table `tasap_blog_posts`
--
ALTER TABLE `tasap_blog_posts`
  ADD PRIMARY KEY (`blog_post_id`),
  ADD UNIQUE KEY `tasap_blog_posts_slug_unique` (`slug`);

--
-- Indexes for table `tasap_blog_post_categories`
--
ALTER TABLE `tasap_blog_post_categories`
  ADD UNIQUE KEY `blog_category_index` (`blog_post_id`,`blog_category_id`),
  ADD KEY `tasap_blog_post_categories_blog_category_id_foreign` (`blog_category_id`);

--
-- Indexes for table `tasap_blog_post_tags`
--
ALTER TABLE `tasap_blog_post_tags`
  ADD UNIQUE KEY `blog_tag_index` (`blog_post_id`,`blog_tag_id`),
  ADD KEY `tasap_blog_post_tags_blog_tag_id_foreign` (`blog_tag_id`);

--
-- Indexes for table `tasap_blog_post_views`
--
ALTER TABLE `tasap_blog_post_views`
  ADD PRIMARY KEY (`blog_post_view_id`),
  ADD KEY `tasap_blog_post_views_blog_post_id_foreign` (`blog_post_id`);

--
-- Indexes for table `tasap_blog_tags`
--
ALTER TABLE `tasap_blog_tags`
  ADD PRIMARY KEY (`blog_tag_id`),
  ADD UNIQUE KEY `tasap_blog_tags_title_unique` (`title`);

--
-- Indexes for table `tasap_cache`
--
ALTER TABLE `tasap_cache`
  ADD PRIMARY KEY (`key`);

--
-- Indexes for table `tasap_cache_locks`
--
ALTER TABLE `tasap_cache_locks`
  ADD PRIMARY KEY (`key`);

--
-- Indexes for table `tasap_consent_soft_tissue_release`
--
ALTER TABLE `tasap_consent_soft_tissue_release`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_custom_field_group`
--
ALTER TABLE `tasap_custom_field_group`
  ADD PRIMARY KEY (`cf_group_id`);

--
-- Indexes for table `tasap_custom_field_group_type`
--
ALTER TABLE `tasap_custom_field_group_type`
  ADD PRIMARY KEY (`cf_group_type_id`);

--
-- Indexes for table `tasap_custom_field_group_type_class_template`
--
ALTER TABLE `tasap_custom_field_group_type_class_template`
  ADD PRIMARY KEY (`cf_gt_class_template_id`),
  ADD UNIQUE KEY `cf_gtype_class_template` (`cf_group_type_id`,`class_id`,`template_id`);

--
-- Indexes for table `tasap_custom_field_group_type_values`
--
ALTER TABLE `tasap_custom_field_group_type_values`
  ADD PRIMARY KEY (`cf_group_type_value_id`);

--
-- Indexes for table `tasap_custom_field_type`
--
ALTER TABLE `tasap_custom_field_type`
  ADD PRIMARY KEY (`cf_type_id`);

--
-- Indexes for table `tasap_email_templates`
--
ALTER TABLE `tasap_email_templates`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_enquiry`
--
ALTER TABLE `tasap_enquiry`
  ADD PRIMARY KEY (`enq_id`);

--
-- Indexes for table `tasap_event_types`
--
ALTER TABLE `tasap_event_types`
  ADD PRIMARY KEY (`evnt_typ_id`),
  ADD UNIQUE KEY `tasap_event_types_title_unique` (`title`);

--
-- Indexes for table `tasap_failed_jobs`
--
ALTER TABLE `tasap_failed_jobs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `tasap_failed_jobs_uuid_unique` (`uuid`);

--
-- Indexes for table `tasap_gallery`
--
ALTER TABLE `tasap_gallery`
  ADD PRIMARY KEY (`gal_id`);

--
-- Indexes for table `tasap_gallery_data`
--
ALTER TABLE `tasap_gallery_data`
  ADD PRIMARY KEY (`gal_dt_id`);

--
-- Indexes for table `tasap_health_questionnaire`
--
ALTER TABLE `tasap_health_questionnaire`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_informed_consent_physiotherapy_treatment`
--
ALTER TABLE `tasap_informed_consent_physiotherapy_treatment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_jobs`
--
ALTER TABLE `tasap_jobs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tasap_jobs_queue_index` (`queue`);

--
-- Indexes for table `tasap_job_batches`
--
ALTER TABLE `tasap_job_batches`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_media`
--
ALTER TABLE `tasap_media`
  ADD PRIMARY KEY (`media_id`);

--
-- Indexes for table `tasap_menu`
--
ALTER TABLE `tasap_menu`
  ADD PRIMARY KEY (`menu_id`);

--
-- Indexes for table `tasap_menu_type`
--
ALTER TABLE `tasap_menu_type`
  ADD PRIMARY KEY (`menu_type_id`),
  ADD UNIQUE KEY `tasap_menu_type_menu_name_unique` (`menu_name`);

--
-- Indexes for table `tasap_migrations`
--
ALTER TABLE `tasap_migrations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_modules`
--
ALTER TABLE `tasap_modules`
  ADD PRIMARY KEY (`module_id`),
  ADD UNIQUE KEY `tasap_modules_title_unique` (`title`),
  ADD UNIQUE KEY `tasap_modules_class_name_unique` (`class_name`);

--
-- Indexes for table `tasap_module_class`
--
ALTER TABLE `tasap_module_class`
  ADD PRIMARY KEY (`class_id`),
  ADD UNIQUE KEY `tasap_module_class_class_name_unique` (`class_name`),
  ADD UNIQUE KEY `tasap_module_class_slug_unique` (`slug`);

--
-- Indexes for table `tasap_module_class_templates`
--
ALTER TABLE `tasap_module_class_templates`
  ADD PRIMARY KEY (`module_template_id`),
  ADD UNIQUE KEY `cls_tmp_unq` (`class_id`,`template_id`);

--
-- Indexes for table `tasap_module_methods`
--
ALTER TABLE `tasap_module_methods`
  ADD PRIMARY KEY (`method_id`);

--
-- Indexes for table `tasap_new_patient_forms`
--
ALTER TABLE `tasap_new_patient_forms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_new_patient_problems`
--
ALTER TABLE `tasap_new_patient_problems`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tasap_new_patient_problems_new_patient_form_id_foreign` (`new_patient_form_id`);

--
-- Indexes for table `tasap_oauth_access_tokens`
--
ALTER TABLE `tasap_oauth_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tasap_oauth_access_tokens_user_id_index` (`user_id`);

--
-- Indexes for table `tasap_oauth_auth_codes`
--
ALTER TABLE `tasap_oauth_auth_codes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tasap_oauth_auth_codes_user_id_index` (`user_id`);

--
-- Indexes for table `tasap_oauth_clients`
--
ALTER TABLE `tasap_oauth_clients`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tasap_oauth_clients_user_id_index` (`user_id`);

--
-- Indexes for table `tasap_oauth_personal_access_clients`
--
ALTER TABLE `tasap_oauth_personal_access_clients`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_oauth_refresh_tokens`
--
ALTER TABLE `tasap_oauth_refresh_tokens`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tasap_oauth_refresh_tokens_access_token_id_index` (`access_token_id`);

--
-- Indexes for table `tasap_pages`
--
ALTER TABLE `tasap_pages`
  ADD PRIMARY KEY (`page_id`),
  ADD UNIQUE KEY `tasap_pages_slug_unique` (`slug`);

--
-- Indexes for table `tasap_password_reset_tokens`
--
ALTER TABLE `tasap_password_reset_tokens`
  ADD PRIMARY KEY (`email`);

--
-- Indexes for table `tasap_patient_authorizations`
--
ALTER TABLE `tasap_patient_authorizations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_personal_access_tokens`
--
ALTER TABLE `tasap_personal_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `tasap_personal_access_tokens_token_unique` (`token`),
  ADD KEY `tasap_personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);

--
-- Indexes for table `tasap_respectful_conduct_policy`
--
ALTER TABLE `tasap_respectful_conduct_policy`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_role_module_method_rights`
--
ALTER TABLE `tasap_role_module_method_rights`
  ADD PRIMARY KEY (`role_module_method_right_id`),
  ADD UNIQUE KEY `role_module_method_unq` (`role_id`,`module_id`,`method_id`);

--
-- Indexes for table `tasap_sessions`
--
ALTER TABLE `tasap_sessions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tasap_sessions_user_id_index` (`user_id`),
  ADD KEY `tasap_sessions_last_activity_index` (`last_activity`);

--
-- Indexes for table `tasap_settings`
--
ALTER TABLE `tasap_settings`
  ADD PRIMARY KEY (`stng_id`);

--
-- Indexes for table `tasap_sports_rehabilitation`
--
ALTER TABLE `tasap_sports_rehabilitation`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasap_template`
--
ALTER TABLE `tasap_template`
  ADD PRIMARY KEY (`template_id`);

--
-- Indexes for table `tasap_testimonial`
--
ALTER TABLE `tasap_testimonial`
  ADD PRIMARY KEY (`tmnl_id`);

--
-- Indexes for table `tasap_users`
--
ALTER TABLE `tasap_users`
  ADD PRIMARY KEY (`u_id`),
  ADD UNIQUE KEY `tasap_users_email_unique` (`email`);

--
-- Indexes for table `tasap_waiver`
--
ALTER TABLE `tasap_waiver`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `tasap_admin`
--
ALTER TABLE `tasap_admin`
  MODIFY `admin_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `tasap_admin_role`
--
ALTER TABLE `tasap_admin_role`
  MODIFY `role_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `tasap_blog_categories`
--
ALTER TABLE `tasap_blog_categories`
  MODIFY `blog_cat_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_blog_posts`
--
ALTER TABLE `tasap_blog_posts`
  MODIFY `blog_post_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_blog_post_views`
--
ALTER TABLE `tasap_blog_post_views`
  MODIFY `blog_post_view_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_blog_tags`
--
ALTER TABLE `tasap_blog_tags`
  MODIFY `blog_tag_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_consent_soft_tissue_release`
--
ALTER TABLE `tasap_consent_soft_tissue_release`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tasap_custom_field_group`
--
ALTER TABLE `tasap_custom_field_group`
  MODIFY `cf_group_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `tasap_custom_field_group_type`
--
ALTER TABLE `tasap_custom_field_group_type`
  MODIFY `cf_group_type_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `tasap_custom_field_group_type_class_template`
--
ALTER TABLE `tasap_custom_field_group_type_class_template`
  MODIFY `cf_gt_class_template_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;

--
-- AUTO_INCREMENT for table `tasap_custom_field_group_type_values`
--
ALTER TABLE `tasap_custom_field_group_type_values`
  MODIFY `cf_group_type_value_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=120;

--
-- AUTO_INCREMENT for table `tasap_custom_field_type`
--
ALTER TABLE `tasap_custom_field_type`
  MODIFY `cf_type_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `tasap_email_templates`
--
ALTER TABLE `tasap_email_templates`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `tasap_enquiry`
--
ALTER TABLE `tasap_enquiry`
  MODIFY `enq_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=102;

--
-- AUTO_INCREMENT for table `tasap_event_types`
--
ALTER TABLE `tasap_event_types`
  MODIFY `evnt_typ_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `tasap_failed_jobs`
--
ALTER TABLE `tasap_failed_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_gallery`
--
ALTER TABLE `tasap_gallery`
  MODIFY `gal_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tasap_gallery_data`
--
ALTER TABLE `tasap_gallery_data`
  MODIFY `gal_dt_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `tasap_health_questionnaire`
--
ALTER TABLE `tasap_health_questionnaire`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tasap_informed_consent_physiotherapy_treatment`
--
ALTER TABLE `tasap_informed_consent_physiotherapy_treatment`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tasap_jobs`
--
ALTER TABLE `tasap_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_media`
--
ALTER TABLE `tasap_media`
  MODIFY `media_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=99;

--
-- AUTO_INCREMENT for table `tasap_menu`
--
ALTER TABLE `tasap_menu`
  MODIFY `menu_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `tasap_menu_type`
--
ALTER TABLE `tasap_menu_type`
  MODIFY `menu_type_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `tasap_migrations`
--
ALTER TABLE `tasap_migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;

--
-- AUTO_INCREMENT for table `tasap_modules`
--
ALTER TABLE `tasap_modules`
  MODIFY `module_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `tasap_module_class`
--
ALTER TABLE `tasap_module_class`
  MODIFY `class_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `tasap_module_class_templates`
--
ALTER TABLE `tasap_module_class_templates`
  MODIFY `module_template_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `tasap_module_methods`
--
ALTER TABLE `tasap_module_methods`
  MODIFY `method_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=355;

--
-- AUTO_INCREMENT for table `tasap_new_patient_forms`
--
ALTER TABLE `tasap_new_patient_forms`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `tasap_new_patient_problems`
--
ALTER TABLE `tasap_new_patient_problems`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `tasap_oauth_clients`
--
ALTER TABLE `tasap_oauth_clients`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_oauth_personal_access_clients`
--
ALTER TABLE `tasap_oauth_personal_access_clients`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_pages`
--
ALTER TABLE `tasap_pages`
  MODIFY `page_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;

--
-- AUTO_INCREMENT for table `tasap_patient_authorizations`
--
ALTER TABLE `tasap_patient_authorizations`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `tasap_personal_access_tokens`
--
ALTER TABLE `tasap_personal_access_tokens`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_respectful_conduct_policy`
--
ALTER TABLE `tasap_respectful_conduct_policy`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tasap_role_module_method_rights`
--
ALTER TABLE `tasap_role_module_method_rights`
  MODIFY `role_module_method_right_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=117;

--
-- AUTO_INCREMENT for table `tasap_settings`
--
ALTER TABLE `tasap_settings`
  MODIFY `stng_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64;

--
-- AUTO_INCREMENT for table `tasap_sports_rehabilitation`
--
ALTER TABLE `tasap_sports_rehabilitation`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tasap_template`
--
ALTER TABLE `tasap_template`
  MODIFY `template_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `tasap_testimonial`
--
ALTER TABLE `tasap_testimonial`
  MODIFY `tmnl_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_users`
--
ALTER TABLE `tasap_users`
  MODIFY `u_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tasap_waiver`
--
ALTER TABLE `tasap_waiver`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `tasap_blog_post_categories`
--
ALTER TABLE `tasap_blog_post_categories`
  ADD CONSTRAINT `tasap_blog_post_categories_blog_category_id_foreign` FOREIGN KEY (`blog_category_id`) REFERENCES `tasap_blog_categories` (`blog_cat_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `tasap_blog_post_categories_blog_post_id_foreign` FOREIGN KEY (`blog_post_id`) REFERENCES `tasap_blog_posts` (`blog_post_id`) ON DELETE CASCADE;

--
-- Constraints for table `tasap_blog_post_tags`
--
ALTER TABLE `tasap_blog_post_tags`
  ADD CONSTRAINT `tasap_blog_post_tags_blog_post_id_foreign` FOREIGN KEY (`blog_post_id`) REFERENCES `tasap_blog_posts` (`blog_post_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `tasap_blog_post_tags_blog_tag_id_foreign` FOREIGN KEY (`blog_tag_id`) REFERENCES `tasap_blog_tags` (`blog_tag_id`) ON DELETE CASCADE;

--
-- Constraints for table `tasap_blog_post_views`
--
ALTER TABLE `tasap_blog_post_views`
  ADD CONSTRAINT `tasap_blog_post_views_blog_post_id_foreign` FOREIGN KEY (`blog_post_id`) REFERENCES `tasap_blog_posts` (`blog_post_id`) ON DELETE CASCADE;

--
-- Constraints for table `tasap_new_patient_problems`
--
ALTER TABLE `tasap_new_patient_problems`
  ADD CONSTRAINT `tasap_new_patient_problems_new_patient_form_id_foreign` FOREIGN KEY (`new_patient_form_id`) REFERENCES `tasap_new_patient_forms` (`id`) ON DELETE CASCADE;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
