-- MySQL dump 10.13 Distrib 5.7.23-23, for Linux (x86_64) -- -- Host: localhost Database: sspdeygq_ssp1 -- ------------------------------------------------------ -- Server version 5.7.23-23 /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */; /*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */; /*!50717 PREPARE s FROM @rocksdb_get_is_supported */; /*!50717 EXECUTE s */; /*!50717 DEALLOCATE PREPARE s */; /*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */; /*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */; /*!50717 EXECUTE s */; /*!50717 DEALLOCATE PREPARE s */; -- -- Table structure for table `abouts` -- DROP TABLE IF EXISTS `abouts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abouts` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo_dark` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo_light` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `address_link` text COLLATE utf8mb4_unicode_ci, `map` text COLLATE utf8mb4_unicode_ci, `facebook` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `instagram` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `youtube` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abouts` -- LOCK TABLES `abouts` WRITE; /*!40000 ALTER TABLE `abouts` DISABLE KEYS */; INSERT INTO `abouts` (`id`, `title`, `description`, `image`, `logo_dark`, `logo_light`, `phone1`, `phone2`, `email`, `address`, `address_link`, `map`, `facebook`, `twitter`, `instagram`, `youtube`, `created_at`, `updated_at`) VALUES (1,'SSP Softpro India',NULL,NULL,NULL,NULL,'9560867895',NULL,'sspsoftproindia@gmail.com','WZ-12, Krishna Puri, Tilak Nagar New Delhi- 110018','https://goo.gl/maps/xYHKVBC9yvVCPVxD7','https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14006.546818322598!2d77.0836418!3d28.6406485!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390d05770c3f2937%3A0x4af4c8c0157ca1dc!2sSSP%20Softpro%20India%20Pvt%20Ltd!5e0!3m2!1sen!2sin!4v1686978486444!5m2!1sen!2sin',NULL,NULL,NULL,NULL,'2023-10-28 01:26:39','2023-10-28 01:35:06'); /*!40000 ALTER TABLE `abouts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blogdetails` -- DROP TABLE IF EXISTS `blogdetails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `blogdetails` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `blog_category` int(20) NOT NULL, `meta_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `meta_description` text COLLATE utf8mb4_unicode_ci NOT NULL, `meta_keyword` text COLLATE utf8mb4_unicode_ci NOT NULL, `author` text COLLATE utf8mb4_unicode_ci NOT NULL, `title` text COLLATE utf8mb4_unicode_ci NOT NULL, `title_slug` text COLLATE utf8mb4_unicode_ci NOT NULL, `feature_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `feature_image_alt` text COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blogdetails` -- LOCK TABLES `blogdetails` WRITE; /*!40000 ALTER TABLE `blogdetails` DISABLE KEYS */; INSERT INTO `blogdetails` (`id`, `blog_category`, `meta_title`, `meta_description`, `meta_keyword`, `author`, `title`, `title_slug`, `feature_image`, `feature_image_alt`, `description`, `created_at`, `updated_at`) VALUES (1,0,'','','','','','','','','',NULL,NULL),(2,0,'','','','','','','','','',NULL,NULL); /*!40000 ALTER TABLE `blogdetails` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blogs` -- DROP TABLE IF EXISTS `blogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `blogs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` text COLLATE utf8mb4_unicode_ci NOT NULL, `slug` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blogs` -- LOCK TABLES `blogs` WRITE; /*!40000 ALTER TABLE `blogs` DISABLE KEYS */; INSERT INTO `blogs` (`id`, `name`, `slug`, `created_at`, `updated_at`) VALUES (1,'sda','asdas',NULL,NULL),(2,'','',NULL,NULL); /*!40000 ALTER TABLE `blogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categories` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` text COLLATE utf8mb4_unicode_ci NOT NULL, `slug` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categories` -- LOCK TABLES `categories` WRITE; /*!40000 ALTER TABLE `categories` DISABLE KEYS */; INSERT INTO `categories` (`id`, `title`, `slug`, `created_at`, `updated_at`) VALUES (4,'testin','test','2024-09-02 01:50:21','2024-09-02 01:50:21'),(5,'Digitlal Makerting','digital-maketing','2024-09-02 04:03:08','2024-09-02 04:03:08'),(6,'Rekha','rekha','2024-09-02 06:14:04','2024-09-02 06:14:04'); /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category_post` -- DROP TABLE IF EXISTS `category_post`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `category_post` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `category_id` bigint(20) unsigned NOT NULL, `post_id` bigint(20) unsigned NOT NULL DEFAULT '2', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `category_post_category_id_foreign` (`category_id`), KEY `category_post_post_id_foreign` (`post_id`), CONSTRAINT `category_post_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE, CONSTRAINT `category_post_post_id_foreign` FOREIGN KEY (`post_id`) REFERENCES `posts` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category_post` -- LOCK TABLES `category_post` WRITE; /*!40000 ALTER TABLE `category_post` DISABLE KEYS */; INSERT INTO `category_post` (`id`, `category_id`, `post_id`, `created_at`, `updated_at`) VALUES (2,5,2,NULL,NULL),(3,6,3,NULL,NULL); /*!40000 ALTER TABLE `category_post` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `failed_jobs` -- DROP TABLE IF EXISTS `failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `failed_jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `failed_jobs` -- LOCK TABLES `failed_jobs` WRITE; /*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `keywords` -- DROP TABLE IF EXISTS `keywords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `keywords` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `portfolio_id` bigint(20) unsigned NOT NULL, `keyword` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rank` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `keywords_portfolio_id_foreign` (`portfolio_id`), CONSTRAINT `keywords_portfolio_id_foreign` FOREIGN KEY (`portfolio_id`) REFERENCES `portfolios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `keywords` -- LOCK TABLES `keywords` WRITE; /*!40000 ALTER TABLE `keywords` DISABLE KEYS */; INSERT INTO `keywords` (`id`, `portfolio_id`, `keyword`, `rank`, `link`, `created_at`, `updated_at`) VALUES (1,1,'Pet cremation noida','1st Position',NULL,'2023-11-03 23:22:59','2023-11-03 23:32:15'),(2,1,'Pet burial noida','1st Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(3,1,'Pet euthanasia services delhi','1st Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(4,1,'Pet asthi visarjan','1st Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(5,1,'Pet cremation gurgaon','2nd Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(6,1,'Pet Cremation services','3rd Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(7,1,'Pet cremation services delhi','3rd Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(8,1,'Pet Creamtion near me','4th Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(9,1,'Pet cremation faridabad','5th Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(10,1,'Pet Burial services','5th Position',NULL,'2023-11-03 23:32:15','2023-11-03 23:32:15'),(12,3,'Vashistha Cave to Gita Bhavan taxi','1',NULL,'2023-11-04 00:47:10','2023-12-13 07:10:33'),(13,4,'Glass pergola manufacturers in hyderabad','1',NULL,'2023-11-04 00:47:38','2023-12-13 07:13:33'),(14,5,NULL,NULL,NULL,'2023-11-04 00:48:16','2023-11-04 00:48:16'),(15,6,NULL,NULL,NULL,'2023-11-04 00:48:45','2023-11-04 00:48:45'),(16,7,NULL,NULL,NULL,'2023-11-04 00:49:12','2023-11-04 00:49:12'),(17,8,NULL,NULL,NULL,'2023-11-04 00:49:33','2023-11-04 00:49:33'),(18,9,'Sofa cleaning service in Patiala','6',NULL,'2023-11-04 00:49:52','2023-12-13 07:07:12'),(19,9,'Sofa cleaning Patiala','6',NULL,'2023-12-13 07:07:12','2023-12-13 07:07:12'),(20,9,'Sofa cleaning services Patiala','6',NULL,'2023-12-13 07:07:12','2023-12-13 07:07:12'),(21,3,'Kunjapuri to Jumpin Heights taxi','1',NULL,'2023-12-13 07:10:33','2023-12-13 07:10:33'),(22,3,'Nag Tibba Trek to Kemty Falls taxi','2',NULL,'2023-12-13 07:10:33','2023-12-13 07:10:33'),(23,3,'Lachhiwala to Buddha Temple taxi','6',NULL,'2023-12-13 07:10:33','2023-12-13 07:10:33'),(24,3,'Taxi for Garjia Temple to Corbett Falls','3',NULL,'2023-12-13 07:10:33','2023-12-13 07:10:33'),(25,3,'Ghanta Ghar to Rajaji Park Taxi','3',NULL,'2023-12-13 07:10:33','2023-12-13 07:10:33'),(26,4,'Wooden facade manufacturer in hyderabad','1',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(27,4,'High pressure laminate manufacturer in hyderabad','1',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(28,4,'Wooden facade in hyderabad','1',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(29,4,'Wooden cladding in hyderabad','3',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(30,4,'Wood cladding hyderabad','3',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(31,4,'Wooden facade price in hyderabad','3',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(32,4,'Steel pergola in hyderabad','5',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(33,4,'Invisible grill hyderabad','6',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(34,4,'Invisible grill price in hyderabad','8',NULL,'2023-12-13 07:13:33','2023-12-13 07:13:33'),(35,10,'Gorakhpur to India Gate Taxi','7',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(36,10,'Gorakhpur to Qutub Minar Taxi','6',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(37,10,'Gorakhpur to Red Fort Taxi','6',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(38,10,'Gorakhpur to Fatehpur Sikri Taxi','7',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(39,10,'Gorakhpur to Agra Fort Taxi','7',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(40,10,'Gorakhpur to Bara Imambara Taxi','7',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(41,10,'Gorakhpur to Gomti Park Taxi','2',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(42,10,'Taxi For Parinirvana Stupa','2',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(43,10,'Local Taxi for Matha Kuar Shrine','2',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(44,10,'Taxi for Japanese Temple Kushinagar','3',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(45,10,'Taxi for Ramabhar Stupa','3',NULL,'2023-12-13 07:20:03','2023-12-13 07:20:03'),(46,11,NULL,NULL,NULL,'2024-01-29 10:42:21','2024-01-29 10:42:21'),(47,12,NULL,NULL,NULL,'2024-01-29 10:45:28','2024-01-29 10:45:28'); /*!40000 ALTER TABLE `keywords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `logins` -- DROP TABLE IF EXISTS `logins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `logins` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `logins` -- LOCK TABLES `logins` WRITE; /*!40000 ALTER TABLE `logins` DISABLE KEYS */; INSERT INTO `logins` (`id`, `email`, `password`, `created_at`, `updated_at`) VALUES (1,'admin@gmail.com','$2y$10$Hty17K8GqiXFUAPERJWZsum2E9YYoIWtCiraHrzZJ2LdZ5UxANKtu','2024-06-07 04:45:06','2024-06-07 04:45:06'); /*!40000 ALTER TABLE `logins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_reset_tokens_table',1),(3,'2019_08_19_000000_create_failed_jobs_table',1),(4,'2019_12_14_000001_create_personal_access_tokens_table',1),(6,'2023_10_28_064436_create_abouts_table',2),(9,'2023_10_28_074412_create_portfolios_table',3),(10,'2023_10_28_075646_create_keywords_table',3),(12,'2023_11_04_065901_create_works_table',4),(13,'2024_05_18_044824_create_payments_table',5),(14,'2024_06_07_100644_create_logins_table',6),(20,'2024_06_10_045939_create_blogs_table',7),(21,'2024_06_10_051323_create_blogdetails_table',7),(22,'2024_08_20_115616_2024_05_18_044824_create_payments_table',8),(23,'2024_09_02_043927_create_categories_table',9),(34,'2024_09_02_043948_create_posts_table',10),(35,'2024_09_02_044018_create_category_posts_table',11),(36,'2024_09_02_073351_drop_user_id_from_posts_table',12),(37,'2024_10_21_063108_create_servicelocations_table',13); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_reset_tokens` -- DROP TABLE IF EXISTS `password_reset_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `password_reset_tokens` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_reset_tokens` -- LOCK TABLES `password_reset_tokens` WRITE; /*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `payments` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `remarks` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payments` -- LOCK TABLES `payments` WRITE; /*!40000 ALTER TABLE `payments` DISABLE KEYS */; INSERT INTO `payments` (`id`, `name`, `email`, `phone`, `amount`, `created_at`, `updated_at`, `remarks`) VALUES (1,'SONU SINGH','libranutsav26@gmail.com','8595374799','20','2024-05-17 23:51:10','2024-05-17 23:51:10',NULL),(2,'SONU SINGH','libranutsav26@gmail.com','8595374799','1','2024-05-18 07:22:41','2024-05-18 07:22:41',NULL),(3,'adsa','admin1234@gmail.com','8595374799','1','2024-05-20 03:14:38','2024-05-20 03:14:38',NULL),(4,'adsa','admin1234@gmail.com','8595374799','1','2024-05-20 03:24:03','2024-05-20 03:24:03',NULL),(5,'SONU SINGH','libranutsav26@gmail.com','62154141','1','2024-05-22 02:11:51','2024-05-22 02:11:51',NULL),(6,'Nisha','nisha1298@gmail.com','9911553670','150','2024-06-03 04:17:17','2024-06-03 04:17:17',NULL),(7,'Hotel11','john@backend.com','9898732999','123','2024-06-26 00:04:16','2024-06-26 00:04:16',NULL),(8,'dffdg','fdgdfgd@rf','4243243242','100','2024-07-01 09:28:40','2024-07-01 09:28:40',NULL),(9,'advertising','asdbasfb@hmai.com','5468464654','200','2024-07-22 00:44:43','2024-07-22 00:44:43',NULL),(10,'hh','hh@dff.ff','55','55','2024-07-24 04:31:11','2024-07-24 04:31:11',NULL),(11,'Utsav kalra','asdbasfb@hmai.com','5468464654','200','2024-07-26 23:09:51','2024-07-26 23:09:51',NULL),(12,'UTSAV KALRA','libranutsav26@gmail.com','08595374799','4000','2024-07-29 12:46:48','2024-07-29 12:46:48',NULL),(13,'Utsav kalra','raviranjan88826@gmail.com','9999999999','200','2024-07-30 00:29:08','2024-07-30 00:29:08',NULL),(14,'DV','admin@gmail.com','9355993526','1000','2024-08-06 02:15:16','2024-08-06 02:15:16',NULL),(15,'DV','admin@gmail.com','9355993526','1000','2024-08-06 02:15:17','2024-08-06 02:15:17',NULL),(16,'Shiv Kumar','kshiv388@gmail.com','8400024049','6500','2024-08-17 02:37:58','2024-08-17 02:37:58',NULL),(17,'Shiv Kumar','kshiv388@gmail.com','7303067769','6500','2024-08-17 02:39:20','2024-08-17 02:39:20',NULL),(18,'Deepali Patel','ppthetraveller@gmail.com','9366226407','10000','2024-08-17 04:48:30','2024-08-17 04:48:30',NULL),(19,'Deepali Patel','ppthetraveller123@gmail.com','9366226407','10000','2024-08-17 04:48:42','2024-08-17 04:48:42',NULL),(20,'Sonu','aliullazim2@gmail.com','9868482439','1','2024-08-17 04:59:27','2024-08-17 04:59:27',NULL),(21,'Deepali Patel','pushpendraptl211@gmail.com','9910141081','5000','2024-08-17 07:45:34','2024-08-17 07:45:34',NULL),(22,'Utsav kalra','raviranjan88826@gmail.com','9999999999','1','2024-08-20 06:20:04','2024-08-20 06:20:04',NULL),(23,'Utsav kalra','raviranjan88826@gmail.com','9999999999','1','2024-08-20 06:31:39','2024-08-20 06:31:39','sdfsafeswf'),(24,'testing','backenddata.ssp@gmail.com','9999999999','1','2024-08-20 07:10:00','2024-08-20 07:10:00','testing'),(25,'testing','backenddata.ssp@gmail.com','9999999999','1','2024-08-20 07:10:34','2024-08-20 07:10:34','testing'),(26,'testing','backenddata.ssp@gmail.com','9999999999','1','2024-08-20 07:12:47','2024-08-20 07:12:47','testing'),(27,'testing','backenddata.ssp@gmail.com','9999999999','1','2024-08-20 07:15:29','2024-08-20 07:15:29','testing'),(28,'SONU SINGH','raviranjan88826@gmail.com','5468464654','1','2024-08-20 07:18:46','2024-08-20 07:18:46','564866481648'),(29,'SONU SINGH','backenddata.ssp@gmail.com','5465464646','1','2024-08-20 07:21:27','2024-08-20 07:21:27','waedwqewqqwe'),(30,'SONU SINGH','backenddata.ssp@gmail.com','5465464646','1','2024-08-20 07:23:21','2024-08-20 07:23:21','waedwqewqqwe'),(31,'SONU SINGH','backenddata.ssp@gmail.com','5465464646','1','2024-08-20 07:23:55','2024-08-20 07:23:55','waedwqewqqwe'),(32,'SONU SINGH','backenddata.ssp@gmail.com','5465464646','1','2024-08-20 07:24:32','2024-08-20 07:24:32','waedwqewqqwe'),(33,'testing','backenddata.ssp@gmail.com','56565656565','1','2024-08-20 07:26:08','2024-08-20 07:26:08','erewrewr wrew rew rew rwe rwe r5ew'),(34,'testing','backenddata.ssp@gmail.com','56565656565','1','2024-08-20 07:28:30','2024-08-20 07:28:30','erewrewr wrew rew rew rwe rwe r5ew'),(35,'SONU SINGH','hrithikmehra.ssp@gmail.com','9999999999','12','2024-08-20 22:50:30','2024-08-20 22:50:30','dfsfdsrf'),(36,'SONU SINGH','hrithikmehra.ssp@gmail.com','9999999999','12','2024-08-20 22:55:04','2024-08-20 22:55:04','dfsfdsrf'),(37,'SONU SINGH','hrithikmehra.ssp@gmail.com','9999999999','1','2024-08-20 22:59:43','2024-08-20 22:59:43','sdweqqweq'),(38,'Utsav kalra','hrithikmehra.ssp@gmail.com','8791809790','12','2024-08-20 23:04:01','2024-08-20 23:04:01','498494'),(39,'img','hrithikmehra.ssp@gmail.com','8791809790','1','2024-08-20 23:11:18','2024-08-20 23:11:18','+++++-----'),(40,'testing','hrithikmehra.ssp@gmail.com','5468464654','2','2024-08-20 23:13:17','2024-08-20 23:13:17','++__--'),(41,'testing','utsavkalra.ssp@gmail.com','9999999999','3','2024-08-20 23:16:21','2024-08-20 23:16:21','fdwfrwef'),(42,'testing','hrithikmehra.ssp@gmail.com','9999999999','1','2024-08-21 01:21:31','2024-08-21 01:21:31','earwqr'),(43,'SONU SINGH','raviranjan88826@gmail.com','5468464654','12','2024-08-21 01:27:07','2024-08-21 01:27:07','aSQweswe'),(44,'testingefwf','utsavkalra.ssp@gmail.com','9999999999','1','2024-08-21 01:37:31','2024-08-21 01:37:31','asewqewqe'),(45,'SONU SINGH','utsavkalra.ssp@gmail.com','9999999999','1','2024-08-21 01:48:04','2024-08-21 01:48:04','wsaewqe'),(46,'SONU SINGH','raviranjan88826@gmail.com','8791809790','12','2024-08-21 01:50:22','2024-08-21 01:50:22','aswedwqe'),(47,'Utsav kalra','raviranjan88826@gmail.com','8791809790','1','2024-08-21 02:00:51','2024-08-21 02:00:51','qwerwqrwq'),(48,'SONU SINGH','hrithikmehra.ssp@gmail.com','8791809790','1','2024-08-21 02:03:13','2024-08-21 02:03:13','549+54+945'),(49,'Utsav kalra','asharesidency@gmail.com','9999999999','1','2024-08-21 02:04:08','2024-08-21 02:04:08','9+659+59+5'),(50,'Utsav kalra','asharesidency@gmail.com','8791809790','200','2024-08-21 02:05:11','2024-08-21 02:05:11','teefsefsrgsrgews'),(51,'testing','testing@gmail.com','23424234','2','2024-08-21 02:07:47','2024-08-21 02:07:47','testgintg qwri'),(52,'Utsav kalra','hrithikmehra.ssp@gmail.com','5468464654','2','2024-08-21 02:13:09','2024-08-21 02:13:09','wsqaedqwe'),(53,'Utsav kalra','hrithikmehra.ssp@gmail.com','5468464654','2','2024-08-21 02:15:53','2024-08-21 02:15:53','wsqaedqwe'),(54,'testing','hrithikmehra.ssp@gmail.com','5468464654','5','2024-08-21 02:22:48','2024-08-21 02:22:48','testing'),(55,'testing','hrithikmehra.ssp@gmail.com','6778877887','5','2024-08-21 02:26:24','2024-08-21 02:26:24','wqewqewqeqweqwe+++'),(56,'testing','hrithikmehra.ssp@gmail.com','6778877887','5','2024-08-21 02:28:14','2024-08-21 02:28:14','wqewqewqeqweqwe+++'),(57,'Chacha yadav','ry666570@gmail.com','985959595','7','2024-08-21 02:31:13','2024-08-21 02:31:13','Chacha Vidhayak'),(58,'Tarun','taruntourandtravels01@gmail.com','8595374799','4500','2024-08-21 03:13:16','2024-08-21 03:13:16','This is from Tarun Tour and Travel'),(59,'tarun2','taruntourandtravels01@gmail.com','8797979','1','2024-08-21 03:19:48','2024-08-21 03:19:48','testing'),(60,'tarun3','taruntourandtravels01@gmail.com','4545454545','8','2024-08-21 03:22:20','2024-08-21 03:22:20','454545454'),(61,'SONU SINGH','backenddata.ssp@gmail.com','9999999999','12','2024-08-21 05:33:42','2024-08-21 05:33:42','These are my Remarks'),(62,'Testing_2','backenddata.ssp@gmail.com','9999999999','12','2024-08-21 05:35:31','2024-08-21 05:35:31','These are my Remarks2'),(63,'Utsav kalra','utsavkalra.ssp@gmail.com','8791809790','3','2024-08-21 05:52:58','2024-08-21 05:52:58','asedqwae'),(64,'Utsav kalra','utsavkalra.ssp@gmail.com','8791809790','3','2024-08-21 05:53:39','2024-08-21 05:53:39','asedqwae'),(65,'Utsav kalra','utsavkalra.ssp@gmail.com','8791809790','3','2024-08-21 05:54:21','2024-08-21 05:54:21','asedqwae'),(66,'testing','hrithikmehra.ssp@gmail.com','9999999999','4','2024-08-21 05:58:55','2024-08-21 05:58:55','qwewqdqwe'),(67,'testing6','hrithikmehra.ssp@gmail.com','9999999999','6','2024-08-21 06:02:06','2024-08-21 06:02:06','qwewqdqwe6'),(68,'Another Testing','hrithikmehra.ssp@gmail.com','9999999999','45','2024-08-21 06:15:07','2024-08-21 06:15:07','Remarks for another testing'),(69,'Another Testing4','hrithikmehra.ssp@gmail.com','9999999999','454','2024-08-21 06:20:12','2024-08-21 06:20:12','Remarks for another testing4'),(70,'Another Testing5','hrithikmehra.ssp@gmail.com','9999999999','455','2024-08-21 06:25:10','2024-08-21 06:25:10','Remarks for another testing5'),(71,'Another Testing6','hrithikmehra.ssp@gmail.com','9999999999','456','2024-08-21 06:29:34','2024-08-21 06:29:34','Remarks for another testing6'),(72,'Another Testing7','hrithikmehra.ssp@gmail.com','9999999999','457','2024-08-21 06:32:27','2024-08-21 06:32:27','Remarks for another testing7'),(73,'Another Testing8','hrithikmehra.ssp@gmail.com','9999999999','458','2024-08-21 06:34:35','2024-08-21 06:34:35','Remarks for another testing8'),(74,'Testing','raviranjan88826@gmail.com','8882646796','1','2024-08-24 02:22:34','2024-08-24 02:22:34','test'),(75,'Testing','raviranjan88826@gmail.com','8882646796','1','2024-08-24 02:24:11','2024-08-24 02:24:11','test'),(76,'Testing','raviranjan88826@gmail.com','8882646796','1','2024-08-24 02:26:10','2024-08-24 02:26:10','test'),(77,'Testing','raviranjan88826@gmail.com','8882646796','1','2024-08-24 02:27:50','2024-08-24 02:27:50','test'),(78,'Testing','utsav6626@gmail.com','8882646796','1','2024-08-24 02:32:42','2024-08-24 02:32:42','test'),(79,'Testing','utsavkalra.ssp@gmail.com','8882646796','1','2024-08-24 03:46:32','2024-08-24 03:46:32','test'),(80,'Testing','abc@gmail.com','5465464646','1','2024-08-24 03:54:09','2024-08-24 03:54:09','test'),(81,'testing','hrithikmehra.ssp@gmail.com','545454545','2','2024-08-24 07:30:04','2024-08-24 07:30:04','osedfoewr'),(82,'Testing','backenddata.ssp@gmail.com','8882646796','2000','2024-08-27 23:39:09','2024-08-27 23:39:09','test'),(83,'Testing','backenddata.ssp@gmail.com','5465464646','1','2024-08-27 23:46:30','2024-08-27 23:46:30','test'),(84,'Testing','backenddata.ssp@gmail.com','5465464646','1','2024-08-27 23:51:56','2024-08-27 23:51:56','test'),(85,'Testing','backenddata.ssp@gmail.com','5465464646','1','2024-08-27 23:53:06','2024-08-27 23:53:06','test'),(86,'Testing','backenddata.ssp@gmail.com','8882646796','12','2024-08-27 23:54:24','2024-08-27 23:54:24','test'),(87,'Testing','backenddata.ssp@gmail.com','5465464646','1','2024-08-28 00:07:34','2024-08-28 00:07:34','test'),(88,'Testing','backenddata.ssp@gmail.com','5465464646','1','2024-08-28 00:10:09','2024-08-28 00:10:09','test'),(89,'Testing','backenddata.ssp@gmail.com','5465464646','1','2024-08-28 00:10:34','2024-08-28 00:10:34','test'),(90,'Testing','backenddata.ssp@gmail.com','8882646796','1','2024-08-28 00:29:20','2024-08-28 00:29:20','test'),(91,'Testing','backenddata.ssp@gmail.com','6778877887','23','2024-08-28 23:15:53','2024-08-28 23:15:53','1'),(92,'Testing','backenddata.ssp@gmail.com','6778877887','23','2024-08-28 23:23:01','2024-08-28 23:23:01','1'),(93,'Testing','backenddata.ssp@gmail.com','8882646796','7','2024-08-28 23:27:09','2024-08-28 23:27:09','test'),(94,'Testing','backenddata.ssp@gmail.com','8882646796','3','2024-08-28 23:42:23','2024-08-28 23:42:23','test'),(95,'Utsav Kalra testing','utsavkalra.ssp@gmail.com','8595374799','1','2024-08-29 01:19:50','2024-08-29 01:19:50','this is testing'); /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `personal_access_tokens` -- DROP TABLE IF EXISTS `personal_access_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `personal_access_tokens` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `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, PRIMARY KEY (`id`), UNIQUE KEY `personal_access_tokens_token_unique` (`token`), KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `personal_access_tokens` -- LOCK TABLES `personal_access_tokens` WRITE; /*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `portfolios` -- DROP TABLE IF EXISTS `portfolios`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `portfolios` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `post` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `alt` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `work` json DEFAULT NULL, `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `keyword` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `listing` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `portfolios` -- LOCK TABLES `portfolios` WRITE; /*!40000 ALTER TABLE `portfolios` DISABLE KEYS */; INSERT INTO `portfolios` (`id`, `name`, `logo`, `image`, `post`, `alt`, `website`, `work`, `location`, `keyword`, `listing`, `created_at`, `updated_at`) VALUES (1,'Respectfully Pet Cremation','portfolio/logo/1699073579rpc.webp','portfolio/website/1699073579rpc.png','portfolio/post/1699074135rpc-post.webp','Respectfully Pet Cremation','https://www.respectfullypetcremation.in/','[\"Website\", \"SEO\", \"Local SEO\", \"Social Media\"]','Delhi','pet cremation service','https://rb.gy/ccfb2','2023-11-03 23:22:59','2023-11-03 23:32:28'),(3,'Chauhan Taxi Service','portfolio/logo/1699078858chauhan.webp','portfolio/website/1699078858chauhan.png',NULL,'Chauhan Taxi Service','https://www.chauhantaxiservice.in/','[\"Website\", \"SEO\"]','Mussoorie',NULL,NULL,'2023-11-04 00:47:10','2023-12-13 22:51:51'),(4,'Woodemax Renovation','portfolio/logo/1699078658woodenmax.webp','portfolio/website/1699078877wooden.png',NULL,'Woodemax Renovation','https://www.woodenmax.com/','[\"Website\", \"SEO\"]','Hyderabad',NULL,NULL,'2023-11-04 00:47:38','2023-12-13 22:52:23'),(5,'SS Enterprises','portfolio/logo/1699078696ss-enterprises.webp','portfolio/website/1699078899ss-enterprises.png',NULL,'SS Enterprises','https://www.chauhantaxiservice.in/','[\"Website\"]','Delhi',NULL,NULL,'2023-11-04 00:48:16','2023-12-13 22:52:36'),(6,'Trip Free World',NULL,'portfolio/website/1699078922trip-free.png',NULL,'Trip Free World','https://www.tripfreeworld.com/','[\"Website\"]','Jammu & Kashmir',NULL,NULL,'2023-11-04 00:48:45','2023-12-13 22:53:09'),(7,'PP The Traveller',NULL,'portfolio/website/1699078949pptraveller.png',NULL,'PP The Traveller','https://www.ppthetraveller.com/','[\"Website\"]','Meghalaya',NULL,NULL,'2023-11-04 00:49:12','2023-12-13 22:53:23'),(8,'Bhoomi Taxi Service','portfolio/logo/1699078980bhoomi.webp','portfolio/website/1699078980bhoomitaxi.png',NULL,'Bhoomi Taxi Service','https://www.bhoomitaxiservice.com/','[\"Website\"]','Bhopal',NULL,NULL,'2023-11-04 00:49:33','2023-12-13 22:53:53'),(9,'SK Dry Cleaners','portfolio/logo/1699079011sk.webp','portfolio/website/1699079011sk-drycleaner.png',NULL,'SK Dry Cleaners','https://www.skdrycleaners.in.net/','[\"Website\", \"SEO\"]','Patiala',NULL,NULL,'2023-11-04 00:49:52','2023-12-13 22:54:09'),(10,'Hello Taxi Service',NULL,'portfolio/website/1703309585hello.png',NULL,'Hello Taxi Service','https://hellotaxiservice.in/','[\"Website\", \"SEO\"]','Gorakhpur',NULL,NULL,'2023-12-13 07:20:03','2023-12-23 00:03:05'),(11,'Shagun Matrimony',NULL,'portfolio/website/1706544741WhatsApp Image 2024-01-29 at 9.41.14 PM.jpeg',NULL,NULL,'http://shagunmatrimony.in/','[\"Website\"]','Delhi',NULL,NULL,'2024-01-29 10:42:21','2024-01-29 10:42:21'),(12,'Brand Bucket',NULL,'portfolio/website/1706544927WhatsApp Image 2024-01-29 at 9.44.44 PM.jpeg',NULL,NULL,'http://brandbucket.co.in/','[\"Website\"]','Delhi',NULL,NULL,'2024-01-29 10:45:27','2024-01-29 10:45:27'); /*!40000 ALTER TABLE `portfolios` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `posts` -- DROP TABLE IF EXISTS `posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `posts` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` text COLLATE utf8mb4_unicode_ci NOT NULL, `slug` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` text COLLATE utf8mb4_unicode_ci, `body` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `active` tinyint(1) NOT NULL, `published_at` datetime NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `category_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `posts` -- LOCK TABLES `posts` WRITE; /*!40000 ALTER TABLE `posts` DISABLE KEYS */; INSERT INTO `posts` (`id`, `title`, `slug`, `thumbnail`, `body`, `active`, `published_at`, `created_at`, `updated_at`, `category_id`) VALUES (2,'Resilience planning for business continuity: Lessons from Russia-Ukraine war','resilience-planning-for-business-continuity-lessons-from-russia-ukraine-war','1725269725shutterstock_2265134943_BG.webp','

Under the Recognize’s portfolio of companies, a niche product engineering firm found itself dealing with a serious risk to its business and its people as 2021 drew to a close. Some staff were based out of Ukraine, and the management team faced a series of adverse events. Since the business was growing at a rapid pace, it was easy to ignore the events and focus on core business. Understandably, many players in the technology services ecosystem within Ukraine were doing just that. However, the Recognize team in New York saw it differently and took the events and the risks to the business and its people very seriously from an early stage.

What follows is a series of lessons we learnt while leading the company’s resilience plan, working with the management and functional leaders, and putting in a robust plan that 

3997548547288961552.jpg 72.88 KB
involved hours and hours of meetings, working through minute details of activities to ensure the company was prepared for the war.

Believe that it will happen, and prepare for the worst-case scenario


Most business continuity plans are reasonably good, but they lack one aspect. They assume the worst case is unlikely to happen. An event with the most severe impact and a very low probability of occurrence is acknowledged but rarely respected and planned for. This leads to certain loose threads that become gaping holes when the most severe level of the peril materialises.

Of course, we hoped for the best but were prepared for the worst. We ensured that we played out all scenarios and pre-planned mitigants against risks for each one. This resulted in a solid resilience plan with less ambiguity, and no small detail was ignored

Listen more to people you disagree with


When we went through the planning exercise, there were many contrasting views. Some individuals dismissed the thought of any disruption at all. Some others who were worried about potential war-related disruptions had very specific thoughts on which perils would materialise while insisting that expansive or severe disruption was out of the picture.

Also Read- The economic consequences of the war

Engaging with a wide set of individuals can help in at least two ways. First, you will get to know the mindset of the teams on the ground and the real pulse of the company; second, you will get a broader perspective of underlying hurdles and issues that might otherwise go unnoticed in resilience planning. For example, when we went through scenario planning related to evacuating our employees and their families, we didn’t initially plan for an elderly individual with limited or no mobility or family pets.

The employees are the real decision-makers

img_238294_mahindraandmahindra.avif 28.11 KB

Irrespective of how strong the resilience plan is, the mindset of individuals plays a big role. If the teams are not convinced, they will simply ignore the plan. You need buy-in from individuals to take the resilience plan from strategy to actual crisis-mode execution. Do not ignore individual mindsets and personal preferences. It’s important to stay connected, engage with the teams, and ensure that you win credibility with each of them.

.

',1,'2024-09-02 00:00:00','2024-09-02 04:05:25','2024-09-02 06:13:25',0),(3,'rekh','rekh','17252775792.jpg','

Rekha

rekha is debe

this is para iwewi awhe

',1,'2024-08-08 00:00:00','2024-09-02 06:16:19','2024-09-02 06:16:19',0); /*!40000 ALTER TABLE `posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `servicelocations` -- DROP TABLE IF EXISTS `servicelocations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `servicelocations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `url` text COLLATE utf8mb4_unicode_ci, `title` text COLLATE utf8mb4_unicode_ci, `keyword` text COLLATE utf8mb4_unicode_ci, `description` text COLLATE utf8mb4_unicode_ci, `canonical` text COLLATE utf8mb4_unicode_ci, `ogtitle` text COLLATE utf8mb4_unicode_ci, `ogdescription` text COLLATE utf8mb4_unicode_ci, `schematag` text COLLATE utf8mb4_unicode_ci, `primarykeyword` text COLLATE utf8mb4_unicode_ci, `tagline` text COLLATE utf8mb4_unicode_ci, `secondarykeyword` text COLLATE utf8mb4_unicode_ci, `secondarykeywordpara` text COLLATE utf8mb4_unicode_ci, `tertiarykeyword` text COLLATE utf8mb4_unicode_ci, `tertiarykeywordpara` text COLLATE utf8mb4_unicode_ci, `seo` text COLLATE utf8mb4_unicode_ci, `ppc` text COLLATE utf8mb4_unicode_ci, `smm` text COLLATE utf8mb4_unicode_ci, `cm` text COLLATE utf8mb4_unicode_ci, `q1` text COLLATE utf8mb4_unicode_ci, `a1` text COLLATE utf8mb4_unicode_ci, `q2` text COLLATE utf8mb4_unicode_ci, `a2` text COLLATE utf8mb4_unicode_ci, `q3` text COLLATE utf8mb4_unicode_ci, `a3` text COLLATE utf8mb4_unicode_ci, `q4` text COLLATE utf8mb4_unicode_ci, `a4` text COLLATE utf8mb4_unicode_ci, `q5` text COLLATE utf8mb4_unicode_ci, `a5` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `servicelocations` -- LOCK TABLES `servicelocations` WRITE; /*!40000 ALTER TABLE `servicelocations` DISABLE KEYS */; INSERT INTO `servicelocations` (`id`, `url`, `title`, `keyword`, `description`, `canonical`, `ogtitle`, `ogdescription`, `schematag`, `primarykeyword`, `tagline`, `secondarykeyword`, `secondarykeywordpara`, `tertiarykeyword`, `tertiarykeywordpara`, `seo`, `ppc`, `smm`, `cm`, `q1`, `a1`, `q2`, `a2`, `q3`, `a3`, `q4`, `a4`, `q5`, `a5`, `created_at`, `updated_at`) VALUES (1,'tilak-nagar','Best Digital Marketing Agency in Tilak Nagar','Tilak Nagar','SSP SoftPro India offers top-notch digital marketing services in Tilak Nagar, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.','tilak-nagar','Best Digital Marketing Agency in Tilak Nagar','SSP SoftPro India offers top-notch digital marketing services in Tilak Nagar, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.','type=\"application/ld+json\"> { \"@context\": \"https://schema.org/\", \"@type\": \"BreadcrumbList\", \"itemListElement\": [{ \"@type\": \"ListItem\", \"position\": 1, \"name\": \"\", \"item\": \"\" },{ \"@type\": \"ListItem\", \"position\": 2, \"name\": \"\", \"item\": \"\" }] }','digital marketing agency in Tilak Nagar','SSP SoftPro India offers top-notch digital marketing services in Tilak Nagar, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.','Introduction to Digital Marketing Agency in Tilak Nagar','Tilak Nagar is a bustling locality in West Delhi, known for its vibrant community and numerous businesses, including retail outlets, educational institutions, restaurants, and service providers. At SSP SoftPro India Pvt. Ltd., we specialize in providing exceptional digital marketing services in Tilak Nagar to help businesses reach their full potential online. Whether you\'re a local shopkeeper, a restaurant owner, or a service provider, our digital marketing agency in Tilak Nagar can create tailored strategies to accelerate your business growth. Our mission is to assist businesses in Tilak Nagar in expanding their customer base, enhancing their online presence, and converting leads into loyal clients.','Let\'s Grow Your Business in Tilak Nagar','At SSP SoftPro India Pvt. Ltd., we are committed to driving long-term success for businesses through our online marketing services in Tilak Nagar. With our tailored strategies, we ensure your business receives the attention it deserves from the right audience. Contact us today to schedule a consultation and learn how our digital marketing company in Tilak Nagar can help boost your online visibility, attract more customers, and achieve your business goals.','We improve your website to help it rank higher in search engine results. Whether people are looking for the \"best restaurant in Tilak Nagar\" or \"trusted electricians near me,\" we make sure your business shows up at the top of their search results.','PPC advertising gives you instant visibility and brings the right visitors to your website. We expertly manage Google Ads and social media ads aimed at the audience in Tilak Nagar, helping you get a good return on your investment with every click.','Social media is a key tool for connecting with your local community. Our team will create interesting content on platforms like Facebook, Instagram, and LinkedIn to boost your brand visibility, increase interaction, and build a loyal customer base in Tilak Nagar.','We create valuable and engaging content, including blogs, videos, and infographics, designed to attract and inform your target audience in Tilak Nagar. High-quality content helps bring more visitors to your website and establishes your brand as a trusted authority in your field.','Is it Beneficial to Hire a Digital Marketing Agency in Tilak Nagar?','Yes, hiring a Digital Marketing Agency in Tilak Nagar ensures a more localized and practical approach to digital marketing. With expertise in Digital Marketing Services in Tilak Nagar, agencies can help you reach your target audience more efficiently and quickly achieve results.','How Do I Choose the Right Digital Marketing Agency in Tilak Nagar?','Choose an Online Marketing Agency in Tilak Nagar with industry experience and a proven history of success. Transparency, skilled personnel, and strong communication are essential. Evaluate their case studies, client testimonials, and Digital Marketing Services in Tilak Nagar to ensure they align with your goals.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Tilak Nagar?','Yes, we offer detailed reporting and analytics for Digital Marketing Services in Tilak Nagar, ensuring you have complete visibility into your campaigns and can track the progress towards your business objectives.','Is digital marketing suitable for small businesses?','Absolutely! Digital marketing is highly customizable, making it ideal for small businesses to reach their target audience effectively and affordably, maximizing their ROI.','Why should I choose your agency over others?','Our agency stands out for its personalized approach, experienced team, data-driven strategies, and commitment to helping our clients achieve measurable success. We work closely with each client to deliver results that align with their goals.','2024-11-26 06:32:00','2024-12-03 23:17:12'),(8,'punjabi-bagh','Best Digital Marketing Agency in Punjabi Bagh','Punjabi Bagh','Online presence with SSP SoftPro India, the best digital marketing agency in Punjabi Bagh. We specialize in SEO, SMO, content marketing, and PPC ads to help your business grow.','punjabi-bagh','Best Digital Marketing Agency in Punjabi Bagh','Online presence with SSP SoftPro India, the best digital marketing agency in Punjabi Bagh. We specialize in SEO, SMO, content marketing, and PPC ads to help your business grow.',NULL,'Digital Marketing Agency in Punjabi Bagh','Online presence with SSP SoftPro India, the best digital marketing agency in Punjabi Bagh. We specialize in SEO, SMO, content marketing, and PPC ads to help your business grow.','Introduction to Digital Marketing Agency in Punjabi Bagh','Punjabi Bagh is a well-known neighborhood in West Delhi that includes homes, shops, and various businesses. To stay competitive and connect with the local community, having a strong online presence is very important for companies in Punjabi Bagh. SSP, SoftPro India Pvt. Ltd., specializes in offering customized digital marketing services in Punjabi Bagh. Our digital marketing agency in Punjabi Bagh can help you grow your business online, increase sales, and attract more customers, whether you own a retail store, a restaurant, or a service-based business. We aim to help businesses in Punjabi Bagh by improving their online visibility and turning potential customers into loyal ones.','Let\'s Grow Your Business in Punjabi Bagh','At SSP SoftPro India Pvt. Ltd., we are dedicated to helping businesses grow and succeed online. As a leading digital marketing company in Punjabi Bagh, our customized strategies ensure your business gets the attention it deserves and reaches the right customers. Contact us today to schedule a consultation and discover how we can help you increase your online visibility, attract more customers, and achieve your business goals in Punjabi Bagh.','Our SEO services help your website appear higher on search engines, making sure that your business shows up when local customers search for services like \"best cafés in Punjabi Bagh\" or \"trusted plumbers near me.\" With improved content and smart SEO techniques, we make it easier for more customers in Punjabi Bagh to find your business online.','PPC campaigns help you get fast visibility and reach the right customers. We manage Google Ads and social media campaigns aimed at specific audiences in Punjabi Bagh, making sure you get the most value for your money with every click and bringing real traffic to your business.','Social media is very valuable for businesses that want to connect with their target audience. Our team creates interesting content for platforms like Facebook, Instagram, and LinkedIn, helping your company build brand awareness, increase interaction, and strengthen customer relationships in the Punjabi Bagh community.','We create great content, including blogs, videos, and infographics, aimed at attracting and engaging your audience in Punjabi Bagh. Content marketing brings more visitors to your site, builds customer trust, and makes your business a leader in your field.','Is it Beneficial to Hire a Digital Marketing Agency in Punjabi Bagh?','Yes, hiring a Digital Marketing Agency in Punjabi Bagh can significantly enhance your online presence and accelerate your marketing goals. With expertise in Digital Marketing Services in Punjabi Bagh, agencies can create targeted campaigns that effectively connect with your audience and deliver measurable results.','How Do I Choose the Right Online Marketing Agency in Punjabi Bagh?','When selecting an Online Marketing Agency in Punjabi Bagh, look for one with proven experience in your industry. A competent team, transparent processes, and clear communication are essential. Evaluate their portfolio, client testimonials, and success stories. Compare their Online Marketing Services in Punjabi Bagh to ensure they align with your business goals.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance?','Yes, SSP Softpro India offers comprehensive reporting and analytics to ensure transparency in our Digital Marketing Services in Punjabi Bagh. You will receive regular updates on campaign performance metrics, helping you stay informed and track your ROI effectively.',NULL,NULL,NULL,NULL,'2024-11-26 04:03:20','2024-11-30 03:53:03'),(9,'dwarka','Best Digital Marketing Agency in Dwarka','Dwarka','SSP SoftPro India, the leading Digital Marketing Agency in Dwarka. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver results-driven strategies for your business success.','dwarka','Best Digital Marketing Agency in Dwarka','SSP SoftPro India, the leading Digital Marketing Agency in Dwarka. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver results-driven strategies for your business success.',NULL,'Digital Marketing Agency in Dwarka','Digital Marketing Agency in Dwarka','Introduction to Digital Marketing Agency in Dwarka','Dwarka is a lively area in Delhi that is home to many businesses, including retail shops, schools, and healthcare providers. At SSP SoftPro India Pvt. Ltd., we offer digital marketing services in Dwarka that help businesses reach more people online. Whether you\'re a local shop owner, a real estate agent, or a restaurant, our digital marketing agency in Dwarka can create customized plans to help you grow your business. We aim to help companies in Dwarka attract more customers, improve their online presence, and turn potential customers into loyal clients with our expert digital marketing solutions.','Let\'s Grow Your Business in Dwarka','At SSP SoftPro India Pvt. Ltd., we aim to help businesses in Dwarka achieve long-term growth and success. As a leading digital marketing company in Dwarka, our tailored strategies ensure that your business gets the attention it deserves from the right audience. Contact us today to schedule a consultation and learn how we can help you increase your online visibility, attract more customers, and achieve your business goals in Dwarka.','We improve your website to help it rank higher in search engine results. Whether people are looking for a local service like \"best café in Dwarka\" or \"reliable plumbers near me,\" we make sure your business appears at the top.','With PPC, you can get quick visibility and bring the right customers to your website. We manage Google Ads and social media ads designed for your audience in Dwarka, making sure you get a good return on your investment with every click.','Social media is a strong tool for connecting with customers. Our team creates interesting content on platforms like Facebook, Instagram, and LinkedIn to help you raise brand awareness and increase customer engagement.','We create useful content, including blogs, videos, and infographics, to attract your target audience in Dwarka. Interesting content brings more visitors to your site and builds trust with potential customers.','Is it Beneficial to Hire a Digital Marketing Agency in Dwarka?','Yes, hiring a Digital Marketing Agency in Dwarka can significantly enhance your online presence and accelerate your marketing goals. Agencies specializing in Digital Marketing Services in Dwarka create targeted campaigns that resonate with your local audience, driving measurable results quickly.','How Do I Choose the Right Digital Marketing Agency in Dwarka?','When selecting an Online Marketing Agency in Dwarka, ensure they have experience in your industry and a proven track record. The agency should have a skilled team, transparent processes, and clear communication. Evaluate their portfolio, case studies, and client reviews to ensure they offer the right Digital Marketing Services in Dwarka for your needs.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Dwarka?','Yes, SSP Softpro India offers comprehensive reporting and analytics for all Digital Marketing Services in Dwarka. You\'ll receive detailed insights into campaign performance, helping you make data-driven decisions and track your ROI effectively.',NULL,NULL,NULL,NULL,'2024-11-26 04:19:02','2024-11-30 03:51:43'),(10,'janakpuri','Best Digital Marketing Agency in Janakpuri','Janakpuri','Looking for a leading Digital Marketing Agency in Janakpuri? SSP SoftPro India offers expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your business growth.','janakpuri','Best Digital Marketing Agency in Janakpuri','Looking for a leading Digital Marketing Agency in Janakpuri? SSP SoftPro India offers expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your business growth.',NULL,'Digital Marketing Company in Janakpuri','Looking for a leading Digital Marketing Agency in Janakpuri? SSP SoftPro India offers expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your business growth.','Introduction to Digital Marketing Agency in Janakpuri','Janakpuri is one of the busiest and most lively neighborhoods in Delhi, home to a wide variety of businesses, including retail shops, restaurants, healthcare services, and professional services. As a top digital marketing agency in Janakpuri, SSP SoftPro India Pvt. Ltd. offers special digital marketing services to help businesses build a strong online presence. Whether you want to attract local customers, improve your online visibility, or increase sales, our expertise makes sure that your brand reaches the right audience effectively. Our local knowledge and advanced digital marketing strategies help businesses in Janakpuri stay ahead of their competitors.','Driving Results for Janakpuri Businesses','Our tailored strategies are made to help businesses in Janakpuri grow. Whether you\'re a startup wanting to get noticed or an established company looking to reach more people, our team at SSP SoftPro India, a top digital marketing company in Janakpuri, uses the latest tools and methods to deliver results. From increasing website visitors to getting more inquiries, our solutions are designed to meet your business goals. Partner with us to enjoy the benefits of digital marketing and stand out in the competitive Janakpuri market.','Making sure your business shows up at the top of search results when people look for services like \"top dentist in Janakpuri\" or \"best clothing store near me.\"','Running focused ad campaigns on Google and social media to quickly bring visitors and leads to your business.','Building your brand through creative posts and ads on platforms like Facebook, Instagram, and LinkedIn.','Building your brand through creative posts and ads on platforms like Facebook, Instagram, and LinkedIn.','Is it Beneficial to Hire a Digital Marketing Agency in Janakpuri?','Yes, hiring a Digital Marketing Agency in Janakpuri can provide a significant boost to your brand\'s online presence. With expertise in Digital Marketing Services in Janakpuri, agencies can design effective strategies that target your local audience and deliver measurable results.','How Do I Choose the Right Digital Marketing Agency in Janakpuri?','When choosing an Online Marketing Agency in Janakpuri, consider agencies with extensive industry experience. A proven track record, transparent processes, and a skilled team are crucial factors. Look at their portfolio and client testimonials to ensure they align with your business goals','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Janakpuri?','Yes, SSP Softpro India offers detailed reporting and performance analytics for Digital Marketing Services in Janakpuri, ensuring you stay informed about campaign results and ROI.',NULL,NULL,NULL,NULL,'2024-11-26 04:24:27','2024-11-30 03:52:40'),(11,'rajouri-garden','Best Digital Marketing Agency in Rajouri Garden','Rajouri Garden','Boost your online presence with SSP SoftPro India, the leading digital marketing agency in Rajouri Garden. We specialize in SEO, SMO, Content Marketing, and PPC Ads to help your business grow.','rajouri-garden','Best Digital Marketing Agency in Rajouri Garden','Boost your online presence with SSP SoftPro India, the leading digital marketing agency in Rajouri Garden. We specialize in SEO, SMO, Content Marketing, and PPC Ads to help your business grow.',NULL,'Digital Marketing agency in Rajouri Garden','Boost your online presence with SSP SoftPro India, the leading digital marketing agency in Rajouri Garden. We specialize in SEO, SMO, Content Marketing, and PPC Ads to help your business grow.','Introduction to Digital Marketing Agency in Rajouri Garden','Rajouri Garden is a thriving and diverse neighborhood in West Delhi, home to numerous businesses ranging from retail stores and restaurants to service providers and educational institutions. At SSP SoftPro India Pvt. Ltd., we specialize in offering comprehensive digital marketing services in Rajouri Garden to help businesses amplify their online presence. Whether you\'re a local retailer, a restaurant owner, or a real estate agent, our Digital Marketing agency in Rajouri Garden can design personalized strategies to fuel your business growth. We aim to help businesses in Rajouri Garden attract more customers, improve online visibility, and turn leads into loyal customers.','Let\'s Grow Your Business in Rajouri Garden','At SSP SoftPro India Pvt. Ltd., we aim to help businesses in Rajouri Garden achieve long-term success. As a top digital marketing company in Rajouri Garden, our personalized strategies ensure that your business gets the attention it deserves from the right audience. Contact us today to schedule a consultation and discover how our digital marketing service in Rajouri Garden can help you increase your online visibility, attract more customers, and reach your business goals','We optimize your website to improve its ranking on search engines. Whether potential customers are searching for the \"best restaurant in Rajouri Garden\" or \"trusted electricians near me,\" we ensure your business appears at the top of relevant search results, driving more local traffic to your website.','PPC advertising provides instant visibility, driving highly targeted traffic to your site. We manage Google Ads and social media ad campaigns explicitly tailored for businesses in Rajouri Garden, ensuring that every click delivers the best return on investment (ROI).','Social media is a vital tool for connecting with your target audience. Our team will create engaging and shareable content for platforms like Facebook, Instagram, and LinkedIn, helping to build your brand presence and foster interaction with potential customers in Rajouri Garden.','We create high-quality and engaging content, including blogs, videos, and infographics, designed to attract and engage your target audience in Rajouri Garden. Effective content marketing drives traffic to your website and helps establish your business as a trusted authority in its niche.','Is it Beneficial to Hire a Digital Marketing Agency in Rajouri Garden?','Yes, a Digital Marketing Agency in Rajouri Garden can help you accelerate your digital growth. With expertise in Digital Marketing Services in Rajouri Garden, agencies can craft campaigns that resonate with your target audience, leading to measurable results.','How Do I Choose the Right Digital Marketing Agency in Rajouri Garden?','Choose an Online Marketing Agency in Rajouri Garden that has a proven track record of success. Look for agencies with experience in your industry, transparency in their processes, and a solid portfolio of past work.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Rajouri Garden?','Yes, SSP Softpro India provides comprehensive reporting and analytics for all Digital Marketing Services in Rajouri Garden, ensuring you are kept up to date on campaign performance and ROI.',NULL,NULL,NULL,NULL,'2024-11-26 04:30:38','2024-11-30 03:53:36'),(12,'karol-bagh','Best Digital Marketing Agency in Karol Bagh','Karol Bagh','SSP SoftPro India, the leading Digital Marketing Agency in Karol Bagh. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver tailored solutions to boost your online presence.','karol-bagh','Best Digital Marketing Agency in Karol Bagh','SSP SoftPro India, the leading Digital Marketing Agency in Karol Bagh. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver tailored solutions to boost your online presence.',NULL,'Digital Marketing Agency in Karol Bagh','SSP SoftPro India, the leading Digital Marketing Agency in Karol Bagh. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver tailored solutions to boost your online presence.','Introduction to Digital Marketing Agency in Karol Bagh','Karol Bagh is a bustling commercial hub in Central Delhi, known for its vibrant markets, diverse shops, and a blend of traditional and modern businesses. With a rich history and an evolving retail landscape, companies in Karol Bagh require a strong online presence to thrive in the competitive market. As a leading digital marketing agency in Karol Bagh, we specialize in digital marketing services that help businesses enhance their online visibility and expand their customer base. Whether you operate a retail store, restaurant, or service-based business, our digital marketing service in Karol Bagh can craft personalized strategies to foster growth and success. We aim to assist businesses in Karol Bagh in attracting more customers, improving their online reputation, and converting leads into long-term clients.','Let\'s Grow Your Business in Karol Bagh','At SSP SoftPro India Pvt. Ltd., we are committed to helping businesses in Karol Bagh thrive in the digital world. As a leading Digital Marketing company in Karol Bagh, we offer tailored strategies that ensure your business gains visibility, attracts more customers, and achieves sustainable growth. Contact us today for a consultation and learn how we can help you increase your online presence, reach new customers, and accomplish your business objectives in Karol Bagh.','Our SEO services focus on improving your website\'s ranking on search engines, helping your business appear in the top search results when local customers search for products or services in Karol Bagh. Whether someone is looking for \"best shops in Karol Bagh\" or \"trusted tailors near me,\" we make sure your business stands out in search results.','PPC advertising ensures your business gets immediate visibility. We manage Google Ads and social media ad campaigns targeted specifically to potential customers in Karol Bagh, maximizing your return on investment (ROI) with every click.','With social media\'s power to reach local and global audiences, we create engaging content for platforms like Facebook, Instagram, and LinkedIn. We help businesses in Karol Bagh build brand awareness, foster customer engagement, and increase loyalty by connecting with their audience meaningfully.','With social media\'s power to reach local and global audiences, we create engaging content for platforms like Facebook, Instagram, and LinkedIn. We help businesses in Karol Bagh build brand awareness, foster customer engagement, and increase loyalty by connecting with their audience meaningfully.','Is it Beneficial to Hire a Digital Marketing Agency in Karol Bagh?','Yes, hiring a Digital Marketing Agency in Karol Bagh can boost your brand\'s online visibility and drive faster results. With expertise in Digital Marketing Services in Karol Bagh, agencies can create targeted strategies that engage your local audience effectively.','How Do I Choose the Right Digital Marketing Agency in Karol Bagh?','Choose a Digital Marketing Agency in Karol Bagh with a proven track record of success. Ensure they offer customized strategies, a skilled team, and transparent processes in Digital Marketing Services in Karol Bagh. Check client reviews and past case studies for confidence.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Karol Bagh?','Yes, SSP Softpro India provides regular reports and analytics for all Digital Marketing Services in Karol Bagh, giving you the transparency needed to track campaign performance and ROI effectively.',NULL,NULL,NULL,NULL,'2024-11-26 04:44:07','2024-11-30 03:57:37'),(13,'south-delhi','Best Digital Marketing Agency in South Delhi','South Delhi','SSP SoftPro India is a leading Digital Marketing Agency in South Delhi offering expert services in SEO, SMO, Content Marketing, and PPC Ads to drive business growth and online visibility.','south-delhi','Best Digital Marketing Agency in South Delhi','SSP SoftPro India is a leading Digital Marketing Agency in South Delhi offering expert services in SEO, SMO, Content Marketing, and PPC Ads to drive business growth and online visibility.',NULL,'Digital Marketing Services in South Delhi','SSP SoftPro India is a leading Digital Marketing Agency in South Delhi offering expert services in SEO, SMO, Content Marketing, and PPC Ads to drive business growth and online visibility.','Introduction to Digital Marketing Agency in South Delhi','South Delhi is one of the capital\'s most dynamic and affluent regions, home to various businesses, from luxury brands and high-end restaurants to local services and educational institutions. To succeed in such a competitive market, companies in South Delhi need to establish a solid digital presence. At SSP SoftPro India Pvt. Ltd., we specialize in providing digital marketing services in South Delhi, tailored to the unique needs of businesses in the area. Whether you\'re running a retail store, a real estate agency, or a restaurant, our digital marketing agency in South Delhi can develop strategies to expand your online reach, attract more customers, and convert leads into loyal clients. We aim to help your business grow and stand out in this fast-paced, digital-first world.','Let\'s Grow Your Business in South Delhi','At SSP SoftPro India Pvt. Ltd., we are dedicated to helping businesses in South Delhi achieve long-term growth. As a leading Digital Marketing company in South Delhi, our customized strategies ensure that your business gets the attention it deserves, reaching the right audience at the right time. Contact us today for a consultation and discover how we can help you improve your online visibility, attract more customers, and achieve your business goals in South Delhi.','Our SEO strategies are designed to improve your website\'s ranking on search engines, making it easier for local customers in South Delhi to find your business online. Whether they are searching for \"best restaurants in South Delhi\" or \"trusted home decorators near me,\" we ensure that your company ranks high in search results, driving more relevant traffic to your website','PPC campaigns provide businesses with immediate visibility and targeted traffic. We manage Google Ads and social media ad campaigns tailored to South Delhi\'s audience, helping your business reach the right customers and achieve a high return on investment (ROI).','Social media platforms like Facebook, Instagram, and LinkedIn are powerful tools for engaging with local customers. We create and manage compelling content that resonates with your target audience, building brand awareness and fostering customer interaction. Our social media marketing services help businesses in South Delhi boost their online presence and drive more engagement.','High-quality, relevant content is critical to building trust and engaging potential customers. We create blogs, videos, infographics, and other content that attract traffic to your website and educate and inform your audience. Content marketing is essential for businesses in South Delhi to build their reputation and establish themselves as experts in their field.','Is it Beneficial to Hire a Digital Marketing Agency in South Delhi?','Yes, hiring a Digital Marketing Agency in South Delhi can help your business achieve a more substantial online presence and faster results. With expertise in Digital Marketing Services in South Delhi, agencies can develop targeted campaigns that resonate with the local audience, driving measurable growth.','How Do I Choose the Right Digital Marketing Agency in South Delhi?','When selecting a Digital Marketing Agency in South Delhi, consider agencies with experience in your industry. Ensure they have a skilled team with a proven track record and offer Digital Marketing Services in South Delhi that align with your goals. Reviewing their portfolio and client testimonials will help you make the right decision.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in South Delhi?','Yes, SSP Softpro India provides comprehensive reporting and analytics for Digital Marketing Services in South Delhi, allowing you to track campaign performance, assess ROI, and make informed decisions.',NULL,NULL,NULL,NULL,'2024-11-26 04:47:54','2024-11-30 03:54:30'),(14,'uttam-nagar','Best Digital Marketing Agency in Uttam Nagar','Uttam Nagar','Looking for a top digital marketing agency in Uttam Nagar? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads services to grow your business online.','uttam-nagar','Best Digital Marketing Agency in Uttam Nagar','Looking for a top digital marketing agency in Uttam Nagar? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads services to grow your business online.',NULL,'Digital Marketing Services in Uttam Nagar','Looking for a top digital marketing agency in Uttam Nagar? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads services to grow your business online.','Introduction to Digital Marketing Agency in Uttam Nagar','Uttam Nagar is a rapidly growing locality in West Delhi, known for its vibrant community and a wide range of businesses, including retail stores, local services, educational institutions, and food establishments. To stay competitive in this dynamic market, companies in Uttam Nagar need to establish a robust online presence. At SSP SoftPro India Pvt. Ltd., we specialize in providing digital marketing services in Uttam Nagar to help businesses expand their reach and grow in the digital world. Whether you own a small shop, run a restaurant, or provide local services, our digital marketing agency in Uttam Nagar can design personalized strategies to attract more customers and build lasting relationships. We aim to help businesses in Uttam Nagar improve their online visibility, convert leads into loyal customers, and achieve sustainable growth.','Let\'s Grow Your Business in Uttam Nagar','At SSP SoftPro India Pvt. Ltd., we are dedicated to helping businesses in Uttam Nagar achieve long-term growth and success. As a leading Digital Marketing company in Uttam Nagar, our customized strategies ensure that your business receives the attention it deserves from the right audience. Contact us today to schedule a consultation and learn how we can help you increase your online visibility, attract more customers, and achieve your business goals in Uttam Nagar.','We use SEO strategies to optimize your website and ensure it ranks higher in search engine results. When customers search for services like \"best restaurant in Uttam Nagar\" or \"trusted plumbers near me,\" we help ensure that your business shows up in the top search results, driving more local traffic to your website.','PPC advertising provides immediate visibility and drives highly targeted traffic to your website. We manage Google Ads and social media ad campaigns explicitly tailored for businesses in Uttam Nagar, ensuring maximum return on investment (ROI) for every click.','Social media is a powerful tool for connecting with customers in Uttam Nagar. Our team creates engaging content for platforms like Facebook, Instagram, and LinkedIn to help businesses build brand awareness, engage with local customers, and foster strong relationships with their audience.','Effective content marketing is critical to attracting and engaging potential customers. We create valuable and informative content, including blogs, videos, and infographics, designed to draw your target audience in Uttam Nagar. Engaging content drives traffic to your website and establishes your business as a trusted authority in your field.','Is it Beneficial to Hire a Digital Marketing Agency in Uttam Nagar?','Yes, hiring a Digital Marketing Agency in Uttam Nagar can improve your online visibility and help you achieve faster marketing success. With expertise in Digital Marketing Services in Uttam Nagar, agencies can design campaigns tailored to local audiences, ensuring efficient results.','How Do I Choose the Right Digital Marketing Agency in Uttam Nagar?','Look for a Digital Marketing Agency in Uttam Nagar with experience in your industry. They should offer customized solutions, transparent communication, and proven success in Digital Marketing Services in Uttam Nagar. Be sure to check their portfolio and reviews to ensure they align with your business needs.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Uttam Nagar?','Yes, SSP Softpro India offers detailed reporting and analytics for all Digital Marketing Services in Uttam Nagar. You will receive regular updates on your campaign\'s progress, helping you track your ROI effectively.',NULL,NULL,NULL,NULL,'2024-11-26 04:56:58','2024-11-30 03:55:05'),(15,'green-park','Best Digital Marketing Agency in Green Park','Green Park','SSP SoftPro India is a top Digital Marketing Agency in Green Park, offering expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','green-park','Best Digital Marketing Agency in Green Park','SSP SoftPro India is a top Digital Marketing Agency in Green Park, offering expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.',NULL,'Digital Marketing Agency in Green Park','SSP SoftPro India is a top Digital Marketing Agency in Green Park, offering expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','Introduction to Digital Marketing Agency in Green Park','Green Park is a lively and affluent locality in South Delhi, home to a diverse range of businesses, including upscale retail shops, restaurants, fitness centers, and service providers. Green Park businesses need a solid digital presence in this competitive market to stand out and attract their target audience. At SSP SoftPro India Pvt. Ltd., we specialize in providing comprehensive digital marketing services that help businesses in Green Park boost their online visibility and drive growth. Whether you\'re running a boutique, a café, or a service-oriented business, our digital marketing agency in Green Park can craft personalized strategies designed to deliver results. Our mission is to help businesses in Green Park increase customer engagement, enhance their brand image, and convert leads into loyal clients.','Let\'s Grow Your Business in Green Park','At SSP SoftPro India Pvt. Ltd., we are committed to helping businesses in Green Park succeed digitally. As a leading Digital Marketing company in Green Park, we offer tailored strategies that ensure your business gets the attention it deserves, reaches the right audience, and achieves long-term growth. Contact us today to schedule a consultation and learn how we can help you increase your online visibility, attract more customers, and achieve your business goals in Green Park.','Our SEO strategies are designed to improve your website\'s ranking on search engines, ensuring that your business shows up when local customers in Green Park search for your products or services. Whether it\'s \"best cafés in Green Park\" or \"trusted interior designers near me,\" we help your business rank higher in search results, driving more traffic to your website.','PPC campaigns provide immediate visibility and attract highly targeted traffic to your website. We manage Google Ads and social media ads tailored explicitly for Green Park\'s audience, maximizing your return on investment (ROI) with every click, ensuring you get the best results from your advertising budget.','Social media is a powerful tool to connect with customers and build a loyal following. We create and manage engaging content for platforms like Facebook, Instagram, and LinkedIn to increase your brand\'s visibility, drive engagement, and foster stronger relationships with customers in Green Park.','Content marketing is a vital part of any successful digital strategy. We develop high-quality, informative, and engaging content—such as blogs, videos, and infographics—designed to capture the attention of your target audience in Green Park. Compelling content drives more traffic, builds trust, and establishes your business as an authority in your niche.','Is it Beneficial to Hire a Digital Marketing Agency in Green Park?','Yes, hiring a Digital Marketing Agency in Green Park can significantly enhance your online presence. Agencies with expertise in Digital Marketing Services in Green Park understand the local market and can craft campaigns that resonate with your target audience, delivering impactful results.','How Do I Choose the Right Digital Marketing Agency in Green Park?','When selecting an Online Marketing Agency in Green Park, choose one with a proven track record of success. They should have experience in your industry, and offer customized Digital Marketing Services in Green Park that align with your goals.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Green Park?','Yes, SSP Softpro India offers detailed reporting and analytics for all Digital Marketing Services in Green Park, allowing you to track your campaign\'s progress and measure the effectiveness of your marketing efforts.',NULL,NULL,NULL,NULL,'2024-11-26 05:17:11','2024-11-30 03:56:18'),(16,'rohini','Best Digital Marketing Agency in Rohini','Rohini','Looking for the best Digital Marketing Agency in Rohini? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','rohini','Best Digital Marketing Agency in Rohini','Looking for the best Digital Marketing Agency in Rohini? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.',NULL,'Digital Marketing Agency in Rohini','Looking for the best Digital Marketing Agency in Rohini? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','Introduction to Digital Marketing Agency in Rohini','Rohini is a thriving residential and commercial area in North West Delhi, known for its bustling markets, diverse shopping options, and a growing number of businesses, from retail stores to educational institutes and local services. In this fast-evolving market, companies in Rohini need to establish a strong digital presence to stay competitive and attract a wider audience. At SSP SoftPro India Pvt. Ltd., a leading digital marketing agency in South Delhi, we specialize in providing tailored digital marketing services for businesses in Rohini. Whether you run a local shop, a restaurant, or a service-based business, our digital marketing services can create customized strategies to help your business grow and succeed online. We aim to help companies in Rohini enhance their online visibility, attract more customers, and turn leads into loyal clients.','Let\'s Grow Your Business in Rohini','At SSP SoftPro India Pvt. Ltd., we are committed to helping businesses in Rohini succeed and grow in the digital world. As a leading Digital Marketing company in Rohini, we offer tailored digital marketing strategies that ensure your business reaches the right audience, gains more visibility, and achieves sustainable growth. Contact us today to schedule a consultation to enhance your online presence, attract more customers, and achieve your business goals.','Our SEO services ensure that your website ranks higher in search engine results, helping your business appear when local customers search for your products or services. Whether they are looking for \"best restaurants in Rohini\" or \"trusted plumbers near me,\" we help ensure your business shows up at the top of search results, driving more traffic to your site.','PPC advertising provides quick visibility and attracts targeted traffic to your website. We manage Google Ads and social media ad campaigns specifically tailored for businesses in Rohini, ensuring that each click delivers the highest return on investment (ROI).','Social media is an essential tool for engaging with customers. Our team creates engaging, shareable content for platforms like Facebook, Instagram, and LinkedIn, helping you build brand awareness, increase customer engagement, and foster a strong relationship with your audience in Rohini.','We create high-quality content, including blogs, videos, and infographics, designed to attract and engage potential customers in Rohini. Engaging content drives traffic to your website, builds trust, and positions your business as an authority in your industry.','Is it Beneficial to Hire a Digital Marketing Agency in Rohini?','Yes, hiring a Digital Marketing Agency in Rohini is beneficial for boosting your online presence and achieving marketing goals faster. Agencies specializing in Digital Marketing Services in Rohini can create strategies that effectively target your local audience, driving measurable growth.','How Do I Choose the Right Digital Marketing Agency in Rohini?','When choosing a Digital Marketing Agency in Rohini, ensure they have experience in your industry and a proven track record of success. Look for agencies that offer customized Digital Marketing Services in Rohini and have clear communication and transparency.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Rohini?','Yes, SSP Softpro India provides transparent reporting and detailed analytics for Digital Marketing Services in Rohini. You\'ll receive regular updates on your campaign\'s performance, helping you track ROI and make informed decisions.',NULL,NULL,NULL,NULL,'2024-11-26 06:15:29','2024-11-30 03:57:21'),(19,'paschim-vihar','Best Digital Marketing Agency in Paschim Vihar','Paschim Vihar','SSP SoftPro India offers top-notch digital marketing services in Paschim Vihar, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.','paschim-vihar','Best Digital Marketing Agency in Paschim Vihar','SSP SoftPro India offers top-notch digital marketing services in Paschim Vihar, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.',NULL,'Digital Marketing Agency in Paschim Vihar','SSP SoftPro India offers top-notch digital marketing services in Paschim Vihar, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.','Introduction to Digital Marketing Agency in Paschim Vihar','Paschim Vihar, a bustling residential and commercial hub in West Delhi, is home to diverse businesses, including retail stores, restaurants, and service providers. In such a competitive market, having a solid online presence is vital. At SSP SoftPro India Pvt. Ltd., our Digital Marketing Agency in Paschim Vihar offers customized solutions to help your business thrive. From enhancing online visibility to increasing customer engagement, we specialize in helping local businesses grow through targeted Online Marketing Services in Paschim Vihar.','Let\'s Grow Your Business in Paschim Vihar','SSP SoftPro India Pvt. Ltd. is your trusted partner for all your digital marketing needs. Whether it\'s SEO, social media marketing, or pay-per-click advertising, our team crafts strategies that deliver results for businesses in Paschim Vihar. Contact us today and discover how our Digital Marketing Services in Paschim Vihar can boost your online presence and drive success.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Paschim Vihar?','Yes, hiring a Digital Marketing Agency in Paschim Vihar can help you reach your marketing goals faster. With Digital Marketing Services in Paschim Vihar, agencies can create campaigns that target the local audience and deliver measurable growth.','How Do I Choose the Right Digital Marketing Agency in Paschim Vihar?','Choose an Online Marketing Agency in Paschim Vihar that specializes in your industry and offers Digital Marketing Services in Paschim Vihar. Look for agencies that have a proven track record of success and clear communication with clients.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Paschim Vihar?','Yes, SSP Softpro India provides detailed performance reports and analytics for all Digital Marketing Services in Paschim Vihar, helping you track the progress of your campaigns and optimize your strategies.',NULL,NULL,NULL,NULL,'2024-12-03 01:31:30','2024-12-03 01:35:09'),(20,'hauz-khas','Best Digital Marketing Agency in Hauz Khas','Hauz Khas','Online presence with SSP SoftPro India, the best digital marketing agency in Hauz Khas. We specialize in SEO, SMO, content marketing, and PPC ads to help your business grow.','hauz-khas','Best Digital Marketing Agency in Hauz Khas','Online presence with SSP SoftPro India, the best digital marketing agency in Hauz Khas. We specialize in SEO, SMO, content marketing, and PPC ads to help your business grow.',NULL,'Digital Marketing Agency in Hauz Khas','Online presence with SSP SoftPro India, the best digital marketing agency in Hauz Khas. We specialize in SEO, SMO, content marketing, and PPC ads to help your business grow.','Introduction to Digital Marketing Agency in Hauz Khas','Hauz Khas is one of Delhi\'s most vibrant and artistic neighbourhoods, known for its unique mix of culture, commerce, and creativity. For businesses in Hauz Khas, standing out in the digital space is essential to attract the right audience. SSP SoftPro India Pvt. Ltd. offers premium Digital Marketing Services in Hauz Khas to help you achieve just that. Our strategies are designed to increase your online reach and bring your brand closer to your customers through effective Online Marketing Services in Hauz Khas.','Let\'s Grow Your Business in Hauz Khas','At SSP SoftPro India Pvt. Ltd., we understand the dynamics of the Hauz Khas market. As a leading Digital Marketing Agency in Hauz Khas, we use tailored strategies to help you gain visibility and build a loyal customer base. Partner with us to elevate your business in Hauz Khas and reach new heights of success.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Hauz Khas?','Yes, hiring a Digital Marketing Agency in Hauz Khas can significantly enhance your brand\'s online presence. Agencies with expertise in Digital Marketing Services in Hauz Khas understand the local dynamics and can create highly targeted campaigns that effectively engage the right audience, ensuring measurable results.','How Do I Choose the Right Digital Marketing Agency in Hauz Khas?','When selecting a Digital Marketing Agency in Hauz Khas, consider agencies with a proven track record and industry experience. Look for agencies offering customized Digital Marketing Services in Hauz Khas that align with your business objectives. Review their portfolio, client feedback, and success stories to ensure they have the expertise to meet your needs.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Hauz Khas?','Yes, SSP Softpro India provides comprehensive reporting and analytics for all Digital Marketing Services in Hauz Khas. Our transparent reports allow you to track the performance of your campaigns, assess their effectiveness, and optimize strategies to maximize your ROI.',NULL,NULL,NULL,NULL,'2024-12-03 01:34:01','2024-12-03 01:35:32'),(21,'connaught-place','Best Digital Marketing Agency in Cannaugt place','Connaught Place','SSP SoftPro India, the leading Digital Marketing Agency in Cannaugt place. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver results-driven strategies for your business success.','connaught-place','Best Digital Marketing Agency in Cannaugt place','SSP SoftPro India, the leading Digital Marketing Agency in Cannaugt place. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver results-driven strategies for your business success.',NULL,'Digital Marketing Agency in Cannaugt place','SSP SoftPro India, the leading Digital Marketing Agency in Cannaugt place. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver results-driven strategies for your business success.','Introduction to Digital Marketing Agency in Connaught Place','Connaught Place, the heart of Delhi, is a business and cultural hub with endless opportunities for growth. For businesses here, connecting with the right audience is crucial. SSP SoftPro India Pvt. Ltd. provides comprehensive Digital Marketing Services in Connaught Place, offering strategies that enhance visibility and drive sales. Whether you\'re running a retail store, restaurant, or corporate office, our Online Marketing Services in Connaught Place ensure your business stands out in this competitive landscape.','Let\'s Grow Your Business in Connaught Place','As a trusted Digital Marketing agency in Connaught Place, we specialize in boosting online performance through customized solutions. Let us help your business attract more customers, grow its digital presence, and achieve success in Connaught Place. Contact SSP SoftPro India Pvt. Ltd. today to learn how we can transform your brand.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Connaught Place?','Yes, hiring a Digital Marketing Agency in Connaught Place can significantly enhance your business\'s online presence. Agencies specializing in Digital Marketing Services in Connaught Place understand the local market trends and can create targeted campaigns that connect with your audience effectively, yielding measurable results.','How Do I Choose the Right Digital Marketing Agency in Connaught Place?','When selecting a Digital Marketing Agency in Connaught Place, ensure they have experience in your industry and a proven track record of successful campaigns. Look for agencies that offer tailored Digital Marketing Services in Connaught Place and have clear communication and transparency in their process.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Connaught Place?','Yes, SSP Softpro India offers detailed reporting and analytics for Digital Marketing Services in Connaught Place. We provide regular updates on campaign performance, helping you stay informed and make data-driven decisions to optimize your marketing efforts.','How Can I Get Started With Digital Marketing Services in Connaught Place?','Contact SSP Softpro India, a trusted Digital Marketing Agency in Connaught Place. Schedule a consultation, and we will craft a customized digital marketing strategy to suit your business objectives and help you grow in the competitive online space.','Is Hiring a Digital Marketing Agency in Connaught Place Worth It?','Absolutely! A Digital Marketing Agency in Connaught Place can leverage local expertise and create highly targeted campaigns, ensuring your marketing efforts resonate with the right audience, leading to faster and more impactful results.','2024-12-03 01:39:58','2024-12-03 01:39:58'),(22,'jor-bagh','Best Digital Marketing Agency in Jor Bagh','Jor Bagh','Looking for a leading Digital Marketing Agency in Jor Bagh? SSP SoftPro India offers expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your business growth.','jor-bagh','Best Digital Marketing Agency in Jor Bagh','Looking for a leading Digital Marketing Agency in Jor Bagh? SSP SoftPro India offers expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your business growth.',NULL,'Digital Marketing Agency in Jor Bagh','Looking for a leading Digital Marketing Agency in Jor Bagh? SSP SoftPro India offers expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your business growth.','Introduction to Digital Marketing Agency in Jor Bagh','Jor Bagh is a serene and upscale neighbourhood in Delhi, housing businesses that cater to premium clientele. To stay competitive, businesses in Jor Bagh need tailored Digital Marketing Services in Jor Bagh. At SSP SoftPro India Pvt. Ltd., we specialize in creating bespoke marketing strategies that highlight your unique offerings and engage your target audience. From SEO to social media, our Online Marketing Services in Jor Bagh are designed to boost your business growth.','Let\'s Grow Your Business in Jor Bagh','SSP SoftPro India Pvt. Ltd. is dedicated to helping businesses in Jor Bagh succeed online. As a reliable Digital Marketing Agency in Jor Bagh, we create strategies that align with your goals and enhance your online presence. Partner with us today to experience unmatched digital marketing solutions in Jor Bagh.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Jor Bagh?','Yes, hiring a Digital Marketing Agency in Jor Bagh can help enhance your online visibility and drive more targeted traffic to your business. Agencies with expertise in Digital Marketing Services in Jor Bagh know the local market and can create campaigns that effectively engage your audience for measurable growth.','How Do I Choose the Right Digital Marketing Agency in Jor Bagh?','When choosing a digital marketing agency in Jor Bagh, ensure they have proven experience in your industry and offer digital marketing services tailored to your business needs. Check their portfolio and reviews to confirm their ability to deliver results and align with your business goals.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Jor Bagh?','Yes, SSP Softpro India provides transparent reporting and detailed analytics for Digital Marketing Services in Jor Bagh, allowing you to track the progress of your campaigns and measure their effectiveness to ensure you achieve the desired results.','How Can I Get Started With Digital Marketing Services in Jor Bagh?','To get started, reach out to a reliable Digital Marketing Agency in Jor Bagh like SSP Softpro India. Schedule a consultation, and we\'ll tailor Digital Marketing Services in Jor Bagh\'s strategy that aligns with your business objectives and helps you achieve success online.','Is Hiring a Digital Marketing Agency in Jor Bagh Worth It?','Yes, working with a Digital Marketing Agency in Jor Bagh offers local expertise and a personalized approach. Their in-depth knowledge of the area helps create compelling campaigns that resonate with the local audience and drive quicker, more impactful results.','2024-12-03 01:42:01','2024-12-03 01:42:01'),(23,'model-town','Best Digital Marketing Agency in Model Town','Model Town','Boost your online presence with SSP SoftPro India, the leading digital marketing agency in Model Town. We specialize in SEO, SMO, Content Marketing, and PPC Ads to help your business grow.','model-town','Best Digital Marketing Agency in Model Town','Boost your online presence with SSP SoftPro India, the leading digital marketing agency in Model Town. We specialize in SEO, SMO, Content Marketing, and PPC Ads to help your business grow.',NULL,'Digital Marketing Agency in Model Town','Boost your online presence with SSP SoftPro India, the leading digital marketing agency in Model Town. We specialize in SEO, SMO, Content Marketing, and PPC Ads to help your business grow.','Introduction to Digital Marketing Agency in Model Town','Model Town, a lively residential and commercial area in North Delhi, offers endless opportunities for local businesses to thrive. SSP SoftPro India Pvt. Ltd. provides expert Digital Marketing Services in Model Town, helping businesses establish a solid digital footprint. From improving search engine rankings to creating impactful campaigns, our Online Marketing Services in Model Town ensure your brand reaches its full potential.','Let\'s Grow Your Business in Model Town','With SSP SoftPro India Pvt. Ltd. as your Digital Marketing Agency in Model Town, you can expect personalized strategies tailored to your business needs. Contact us today to learn how our proven methods can transform your digital presence and drive success in Model Town.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Model Town?','Yes, hiring a Digital Marketing Agency in Model Town can help boost your online presence and achieve your marketing goals faster. Agencies offering Digital Marketing Services in Model Town can create effective campaigns that target the local audience and provide measurable results.','How Do I Choose the Right Digital Marketing Agency in Model Town?','When selecting a Digital Marketing Agency in Model Town, ensure they have experience in your industry and offer Digital Marketing Services in Model Town that align with your business goals. Evaluate their past projects, client testimonials, and overall reputation to ensure they meet your needs.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Model Town?','Yes, SSP Softpro India provides comprehensive reporting and analytics for Digital Marketing Services in Model Town. We ensure that you\'re constantly updated on the performance of your campaigns, helping you track ROI and optimize your strategies.','How Can I Get Started With Digital Marketing Services in Model Town?','Reach out to SSP Softpro India, a trusted Digital Marketing Agency in Model Town. Book a consultation, and we will customize Digital Marketing Services in Model Town to help you achieve your online marketing objectives and grow your business.','Is Hiring a Digital Marketing Agency in Model Town Worth It?','Yes, partnering with a Digital Marketing Agency in Model Town is a smart move. Their local knowledge helps them create targeted strategies that resonate with the audience, ensuring faster results and increased brand visibility.','2024-12-03 01:44:39','2024-12-03 01:44:39'),(24,'greater-kailash','Best Digital Marketing Agency in Greater Kailash','Greater Kailash','SSP SoftPro India, the leading Digital Marketing Agency in Greater Kailash. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver tailored solutions to boost your online presence.','greater-kailash','Best Digital Marketing Agency in Greater Kailash','SSP SoftPro India, the leading Digital Marketing Agency in Greater Kailash. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver tailored solutions to boost your online presence.',NULL,'Digital Marketing Agency in Greater Kailash','SSP SoftPro India, the leading Digital Marketing Agency in Greater Kailash. Specializing in SEO, SMO, Content Marketing, and PPC Ads, we deliver tailored solutions to boost your online presence.','Introduction to Digital Marketing Agency in Greater Kailash','Greater Kailash, a premium locality in South Delhi, is renowned for its upscale businesses and discerning clientele. To stand out in this competitive market, businesses in Greater Kailash need robust Digital Marketing Services in Greater Kailash. SSP SoftPro India Pvt. Ltd. specializes in creating customized strategies to help your business enhance its digital footprint and connect with the right audience. Our Online Marketing Services in Greater Kailash cater to diverse industries, ensuring your brand\'s success.','Let\'s Grow Your Business in Greater Kailash','As a top-tier Digital Marketing Agency in Greater Kailash, SSP SoftPro India Pvt. Ltd. is dedicated to providing personalized services that boost visibility and drive growth. Contact us today to explore how our expertise can transform your business and help you achieve your goals in Greater Kailash.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Greater Kailash?','Yes, hiring a Digital Marketing Agency in Greater Kailash can help boost your brand\'s online presence and achieve better marketing results. Agencies specializing in Digital Marketing Services in Greater Kailash are familiar with the local audience and can create campaigns that resonate, driving measurable success.','How Do I Choose the Right Digital Marketing Agency in Greater Kailash?','When choosing a Digital Marketing Agency in Greater Kailash, look for one with experience in your industry and a proven history of successful campaigns. Ensure they offer Digital Marketing Services in Greater Kailash that are tailored to your business needs and objectives.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Greater Kailash?','Yes, SSP Softpro India provides transparent reporting and detailed analytics for Digital Marketing Services in Greater Kailash. You\'ll receive regular updates to help you track the performance of your campaigns and optimize your marketing efforts effectively.','How Can I Get Started With Digital Marketing Services in Greater Kailash?','To get started, contact a reliable digital marketing agency in Greater Kailash, such as SSP Softpro India. We offer a consultation to understand your business needs, followed by tailored Digital Marketing Services in Greater Kailash strategy to help your business grow online.','Is Hiring a Digital Marketing Agency in Greater Kailash Worth It?','Yes, working with a Digital Marketing Agency in Greater Kailash offers local expertise, enabling them to craft campaigns that appeal to the target audience effectively. This results in faster, more efficient marketing and improved ROI for your business.','2024-12-03 01:47:28','2024-12-03 01:47:28'),(25,'saket','Best Digital Marketing Agency in Saket','Saket','Looking for a top digital marketing agency in Saket? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads services to grow your business online.','saket','Best Digital Marketing Agency in Saket','Looking for a top digital marketing agency in Saket? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads services to grow your business online.',NULL,'Digital Marketing Agency in Saket','Looking for a top digital marketing agency in Saket? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads services to grow your business online.','Introduction to Digital Marketing Agency in Saket','Saket, a bustling area in South Delhi, is a hotspot for businesses ranging from retail stores to service-based companies. To thrive in this competitive environment, it\'s essential to have a solid online presence. At SSP SoftPro India Pvt. Ltd., we offer tailored Digital Marketing Services in Saket designed to elevate your brand\'s visibility and connect you with potential customers. Our Online Marketing Services in Saket ensure your business gets the attention it deserves.','Let\'s Grow Your Business in Saket','SSP SoftPro India Pvt. Ltd. is a leading Digital Marketing Agency in Saket that focuses on delivering results-driven strategies. Whether you need SEO, social media management, or paid ads, we have the expertise to help your business grow. Partner with us to make your mark in Saket\'s dynamic marketplace.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Saket?','Yes, hiring a Digital Marketing Agency in Saket can significantly boost your online visibility and marketing performance. Agencies specializing in Digital Marketing Services in Saket can create campaigns that are specifically designed to connect with the local audience, helping you achieve your marketing goals quickly and effectively.','How Do I Choose the Right Digital Marketing Agency in Saket?','When selecting a Digital Marketing Agency in Saket, focus on agencies with a proven track record of success in your industry. Look for agencies that offer personalized Digital Marketing Services in Saket and have a history of successful campaigns. Check their portfolio, client feedback, and testimonials to assess their capability and reliability.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Saket?','Yes, SSP Softpro India provides comprehensive reporting and analytics for Digital Marketing Services in Saket. Our transparent and detailed reports help you track the success of your campaigns, measure performance, and adjust strategies to optimize results.','How Can I Get Started With Digital Marketing Services in Saket?','To get started, contact SSP Softpro India, a trusted Digital Marketing Agency in Saket. We\'ll schedule a consultation to discuss your business needs, goals, and challenges. Based on this, we will craft tailored Digital Marketing Services in Saket strategy to help your business succeed online.','Is Hiring a Digital Marketing Agency in Saket Worth It?','Yes, partnering with a Digital Marketing Agency in Saket ensures that your campaigns are locally targeted, relevant, and effective. With their expertise in Digital Marketing Services in Saket, you can achieve faster and more impactful results.','2024-12-03 01:58:41','2024-12-03 01:58:41'),(26,'okhla','Best Digital Marketing Agency in Okhla','Okhla','SSP SoftPro India is a top Digital Marketing Agency in Okhla, offering expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','okhla','Best Digital Marketing Agency in Okhla','SSP SoftPro India is a top Digital Marketing Agency in Okhla, offering expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.',NULL,'Digital Marketing Agency in Okhla','SSP SoftPro India is a top Digital Marketing Agency in Okhla, offering expert services in SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','Introduction to Digital Marketing Agency in Okhla','Okhla, a key industrial and business area in South Delhi, offers immense opportunities for growth. However, to succeed, businesses here need to leverage the power of digital marketing. SSP SoftPro India Pvt. Ltd. provides specialized Digital Marketing Services in Okhla that are aimed at boosting online visibility and attracting customers. With our Online Marketing Services in Okhla, you can transform your brand and achieve sustained success.','Let\'s Grow Your Business in Okhla','As a trusted Digital Marketing Agency in Okhla, we provide personalized solutions to help businesses thrive in this competitive environment. Let SSP SoftPro India Pvt. Ltd. be your partner in driving growth and achieving your business goals in Okhla.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Okhla?','Yes, hiring a Digital Marketing Agency in Okhla can accelerate your marketing efforts and help your business stand out in the competitive online market. Agencies offering Digital Marketing Services in Okhla are well-equipped to create targeted campaigns that effectively engage your local audience and deliver measurable growth.','How Do I Choose the Right Digital Marketing Agency in Okhla?','When choosing a Digital Marketing Agency in Okhla, prioritize agencies that have expertise in your industry and offer tailored Digital Marketing Services in Okhla. Ensure they have a proven track record of successful campaigns, transparent processes, and clear communication with clients.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Okhla?','Yes, SSP Softpro India provides transparent and detailed reporting for Digital Marketing Services in Okhla. Our regular updates on campaign performance help you track your marketing efforts, adjust strategies, and ensure that you\'re getting the best ROI.','How Can I Get Started With Digital Marketing Services in Okhla?','To get started, reach out to SSP Softpro India, a reliable Digital Marketing Agency in Okhla. We\'ll schedule a consultation to assess your business needs and goals and then create a tailored Digital Marketing Services in Okhla strategy to drive online growth.','Is Hiring a Digital Marketing Agency in Okhla Worth It?','Yes, working with a Digital Marketing Agency in Okhla is highly beneficial. Their local expertise enables them to craft strategies that resonate with your target audience, increasing your brand visibility and driving faster, measurable results.','2024-12-03 02:01:52','2024-12-03 02:01:52'),(27,'mayur-vihar','Best Digital Marketing Agency in Mayur Vihar','Mayur Vihar','Looking for the best Digital Marketing Agency in Mayur Vihar? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','mayur-vihar','Best Digital Marketing Agency in Mayur Vihar','Looking for the best Digital Marketing Agency in Mayur Vihar? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.',NULL,'Digital Marketing Agency in Mayur Vihar','Looking for the best Digital Marketing Agency in Mayur Vihar? SSP SoftPro India offers expert SEO, SMO, Content Marketing, and PPC Ads to boost your online presence.','Introduction to Digital Marketing Agency in Mayur Vihar','Mayur Vihar, a prominent residential and commercial area in East Delhi, is home to various businesses looking to expand their reach. SSP SoftPro India Pvt. Ltd. offers expert Digital Marketing Services in Mayur, Vihar, ensuring your business stays ahead in this competitive market. Our Online Marketing Services in Mayur Vihar are designed to increase visibility, drive traffic, and boost sales.','Let\'s Grow Your Business in Mayur Vihar','SSP SoftPro India Pvt. Ltd. is your reliable Digital Marketing Agency in Mayur, Vihar, which offers customized strategies tailored to your business needs. Reach out to us today to discover how our digital marketing expertise can transform your business and help you achieve your objectives in Mayur Vihar.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Mayur Vihar?','Yes, hiring a Digital Marketing Agency in Mayur Vihar can significantly enhance your online presence and marketing effectiveness. With expertise in Digital Marketing Services in Mayur Vihar, agencies can craft campaigns that connect with your local audience, improve your brand\'s visibility, and drive measurable results.','How Do I Choose the Right Digital Marketing Agency in Mayur Vihar?','When selecting a Digital Marketing Agency in Mayur Vihar, look for agencies that have experience in your industry and a strong portfolio of successful projects. Choose agencies that offer Digital Marketing Services in Mayur Vihar that align with your business goals and can provide a tailored approach.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Mayur Vihar?','Yes, SSP Softpro India offers detailed and transparent reporting for Digital Marketing Services in Mayur Vihar. We provide you with regular updates on campaign performance, allowing you to track key metrics and make data-driven decisions for continuous optimization.',NULL,NULL,NULL,NULL,'2024-12-03 02:04:49','2024-12-03 02:23:52'),(28,'mayapuri','Best Digital Marketing Agency in Mayapuri','Mayapuri','SSP SoftPro India offers top-notch digital marketing services in Mayapuri, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.','mayapuri','Best Digital Marketing Agency in Mayapuri','SSP SoftPro India offers top-notch digital marketing services in Mayapuri, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.',NULL,'Digital Marketing Agency in Mayapuri','SSP SoftPro India offers top-notch digital marketing services in Mayapuri, including SEO, SMO, Content Marketing, and PPC Ads. Drive results with our expert strategies.','Introduction to Digital Marketing Agency in Mayapuri','Mayapuri, a well-known industrial and commercial hub in West Delhi, is a thriving center for businesses seeking to scale their operations. SSP SoftPro India Pvt. Ltd. is proud to extend its expertise in Digital Marketing Services in Mayapuri, providing cutting-edge solutions to ensure your business thrives in the competitive marketplace. From enhancing your brand’s online presence to driving targeted traffic and generating leads, our services are tailored to meet the unique needs of businesses in Mayapuri.','Let\'s Grow Your Business in Mayapuri','At SSP SoftPro India Pvt. Ltd., we understand the pulse of Mayapuri\'s dynamic business ecosystem. As a trusted Digital Marketing Agency in Mayapuri, we deliver customized strategies to empower your business to stand out in the digital landscape. Whether it’s Search Engine Optimization (SEO), Social Media Marketing (SMM), or Pay-Per-Click (PPC) advertising, our team of experts is dedicated to helping you achieve your goals.',NULL,NULL,NULL,NULL,'Is it Beneficial to Hire a Digital Marketing Agency in Mayapuri?','Yes, hiring a Digital Marketing Agency in Mayapuri can significantly enhance your online presence and marketing effectiveness. With expertise in Digital Marketing Services in Mayapuri, agencies can craft campaigns that connect with your local audience, improve your brand\'s visibility, and drive measurable results.','How Do I Choose the Right Digital Marketing Agency in Mayapuri?','When selecting a Digital Marketing Agency in Mayapuri, look for agencies that have experience in your industry and a strong portfolio of successful projects. Choose agencies that offer Digital Marketing Services in Mayapuri that align with your business goals and can provide a tailored approach.','Does SSP Softpro India Provide Reporting and Analytics for Campaign Performance in Mayapuri?','Yes, SSP Softpro India offers detailed and transparent reporting for Digital Marketing Services in Mayapuri. We provide you with regular updates on campaign performance, allowing you to track key metrics and make data-driven decisions for continuous optimization.','How Can I Get Started With Digital Marketing Services in Mayapuri?','To get started, contact SSP Softpro India, a trusted Digital Marketing Agency in Mayapuri. We\'ll set up a consultation to understand your business goals and needs. Based on that, we\'ll design a Digital Marketing Services in Mayapuri strategy tailored to your business.','Is Hiring a Digital Marketing Agency in Mayapuri Worth It?','Yes, working with a Digital Marketing Agency in Mayapuri is an intelligent choice. Their deep understanding of the local market and audience enables them to develop highly effective strategies that generate quick results and measurable success for your business.','2024-12-03 02:28:42','2024-12-03 02:28:42'); /*!40000 ALTER TABLE `servicelocations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (2,'Admin','admin@gmail.com',NULL,'$2y$10$o3kwUzfLNtPOynpSr3aepeePtWo28cILW0mBh4vsYFFRBgo0L5x5.',NULL,'2023-12-27 06:28:50','2023-12-27 06:28:50'),(3,'admin','admin1@gmail.com',NULL,'$2y$10$EA9Q5KPQ1.ibvc3sT1EPveFZ7.1sy3ioW0e95P9Dwk2bOxzuYecQi',NULL,'2024-01-29 10:37:48','2024-01-29 10:37:48'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `works` -- DROP TABLE IF EXISTS `works`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `works` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `portfolio_id` bigint(20) unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `works_portfolio_id_foreign` (`portfolio_id`), CONSTRAINT `works_portfolio_id_foreign` FOREIGN KEY (`portfolio_id`) REFERENCES `portfolios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `works` -- LOCK TABLES `works` WRITE; /*!40000 ALTER TABLE `works` DISABLE KEYS */; /*!40000 ALTER TABLE `works` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'sspdeygq_ssp1' -- -- -- Dumping routines for database 'sspdeygq_ssp1' -- /*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */; /*!50112 PREPARE s FROM @disable_bulk_load */; /*!50112 EXECUTE s */; /*!50112 DEALLOCATE PREPARE s */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2024-12-07 11:41:14