أكبر من حصولك على تصميم موقع أو انشاء متجر
\r\nالكتروني لا يعرفه أحد !!. نحن نعمل على إدارة العلامة
\r\nالتجارية لشركتك باحترافية. من تصميم الهوية، أكبر من حصولك
\r\nالعلامة التجارية لشركتك باحترافية. من تصميم الهوية،
\r\nUSE `income_db`; -- Dumping structure for table income_db.articles CREATE TABLE IF NOT EXISTS `articles` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `category_id` bigint(20) unsigned DEFAULT NULL, `services_ids` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL, `lat` double DEFAULT NULL, `lng` double DEFAULT NULL, `facilities` bigint(20) DEFAULT NULL, `visit_counts` bigint(20) DEFAULT NULL, `open_date` date DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `articles_category_id_article_id_index` (`category_id`), CONSTRAINT `articles_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.articles: ~0 rows (approximately) -- Dumping structure for table income_db.article_descriptions CREATE TABLE IF NOT EXISTS `article_descriptions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) DEFAULT NULL, `description` longtext DEFAULT NULL, `address` longtext DEFAULT NULL, `slug` varchar(100) DEFAULT NULL, `meta_description` text DEFAULT NULL, `keywords` varchar(400) DEFAULT NULL, `article_id` bigint(20) unsigned DEFAULT NULL, `language_id` bigint(20) unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `article_descriptions_language_id_index` (`language_id`), KEY `article_descriptions_article_id_language_id_index` (`article_id`,`language_id`), CONSTRAINT `article_descriptions_article_id_foreign` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `article_descriptions_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.article_descriptions: ~0 rows (approximately) -- Dumping structure for table income_db.banners CREATE TABLE IF NOT EXISTS `banners` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `image` varchar(191) DEFAULT NULL, `video` varchar(191) DEFAULT NULL, `page_url` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `banners_page_url_index` (`page_url`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.banners: ~1 rows (approximately) INSERT INTO `banners` (`id`, `image`, `video`, `page_url`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'storage/photos/shares/header-1.svg', NULL, 'http://localhost/tabweeb/public/ar', '2024-07-30 12:07:28', '2024-07-30 12:07:28', NULL); -- Dumping structure for table income_db.banner_descriptions CREATE TABLE IF NOT EXISTS `banner_descriptions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(200) DEFAULT NULL, `description` text DEFAULT NULL, `btn_name` text DEFAULT NULL, `banner_id` bigint(20) unsigned DEFAULT NULL, `language_id` bigint(20) unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `banner_descriptions_banner_id_index` (`banner_id`), KEY `banner_descriptions_language_id_index` (`language_id`), CONSTRAINT `banner_descriptions_banner_id_foreign` FOREIGN KEY (`banner_id`) REFERENCES `banners` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `banner_descriptions_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.banner_descriptions: ~2 rows (approximately) INSERT INTO `banner_descriptions` (`id`, `title`, `description`, `btn_name`, `banner_id`, `language_id`, `created_at`, `updated_at`, `deleted_at`) VALUES (5, 'شركة تبويب لتقنية المعلومات', '
Taboo is a Saudi institution specialized in designing special software, electronic billing solutions, financial and business systems, designing websites, and smart phone applications2.
', 'Contact us', 1, 2, NULL, NULL, NULL); -- Dumping structure for table income_db.careers CREATE TABLE IF NOT EXISTS `careers` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.careers: ~3 rows (approximately) INSERT INTO `careers` (`id`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, '2024-07-27 13:47:13', '2024-07-27 13:47:13', NULL), (2, '2024-07-27 13:47:38', '2024-07-27 13:47:38', NULL), (3, '2024-07-27 13:48:05', '2024-07-27 13:48:05', NULL); -- Dumping structure for table income_db.career_descriptions CREATE TABLE IF NOT EXISTS `career_descriptions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(200) DEFAULT NULL, `career_id` bigint(20) unsigned DEFAULT NULL, `language_id` bigint(20) unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.career_descriptions: ~6 rows (approximately) INSERT INTO `career_descriptions` (`id`, `title`, `career_id`, `language_id`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'مبرمج', 1, 1, NULL, NULL, NULL), (2, 'programmer', 1, 2, NULL, NULL, NULL), (3, 'مطور', 2, 1, NULL, NULL, NULL), (4, 'Developer', 2, 2, NULL, NULL, NULL), (5, 'مهندس', 3, 1, NULL, NULL, NULL), (6, 'Engineer', 3, 2, NULL, NULL, NULL); -- Dumping structure for table income_db.categories CREATE TABLE IF NOT EXISTS `categories` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `categories_id_index` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.categories: ~0 rows (approximately) -- Dumping structure for table income_db.category_descriptions CREATE TABLE IF NOT EXISTS `category_descriptions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `category_id` bigint(20) unsigned DEFAULT NULL, `language_id` bigint(20) unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `category_descriptions_category_id_foreign` (`category_id`), KEY `category_descriptions_language_id_foreign` (`language_id`), CONSTRAINT `category_descriptions_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE, CONSTRAINT `category_descriptions_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.category_descriptions: ~0 rows (approximately) -- Dumping structure for table income_db.clients CREATE TABLE IF NOT EXISTS `clients` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.clients: ~6 rows (approximately) INSERT INTO `clients` (`id`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, '2024-07-26 18:31:17', '2024-07-26 18:31:17', NULL), (2, '2024-07-26 18:38:39', '2024-07-26 18:38:39', NULL), (3, '2024-07-26 18:39:06', '2024-07-26 18:39:06', NULL), (4, '2024-07-26 18:39:32', '2024-07-26 18:39:32', NULL), (5, '2024-07-26 18:40:04', '2024-07-26 18:40:04', NULL), (6, '2024-07-26 19:46:17', '2024-07-26 19:46:17', NULL), (7, '2024-07-29 20:13:17', '2024-07-29 20:13:17', NULL); -- Dumping structure for table income_db.client_descriptions CREATE TABLE IF NOT EXISTS `client_descriptions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `language_id` bigint(20) unsigned DEFAULT NULL, `client_id` bigint(20) unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `client_descriptions_language_id_foreign` (`language_id`), KEY `client_descriptions_client_id_foreign` (`client_id`), CONSTRAINT `client_descriptions_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `client_descriptions_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.client_descriptions: ~12 rows (approximately) INSERT INTO `client_descriptions` (`id`, `title`, `description`, `language_id`, `client_id`, `created_at`, `updated_at`) VALUES (7, 'باشا', ' علي قدر المسئولية ونفذ العمل بجودة واتقان فريق عمل مميز جدا كان علي قدر المسئولية ونفذ العمل بجودة واتقان', 1, 3, NULL, NULL), (8, 'basha', 'basha
', 2, 3, NULL, NULL), (9, 'موقع', ' علي قدر المسئولية ونفذ العمل بجودة واتقان فريق عمل مميز جدا كان علي قدر المسئولية ونفذ العمل بجودة واتقان', 1, 4, NULL, NULL), (10, 'location', 'location
', 2, 4, NULL, NULL), (11, 'امازون', ' علي قدر المسئولية ونفذ العمل بجودة واتقان فريق عمل مميز جدا كان علي قدر المسئولية ونفذ العمل بجودة واتقان', 1, 5, NULL, NULL), (12, 'amazon', 'amazon
', 2, 5, NULL, NULL), (13, 'عميل', 'علي قدر المسئولية ونفذ العمل بجودة واتقان فريق عمل مميز جدا كان علي قدر المسئولية ونفذ العمل بجودة واتقان2', 1, 2, NULL, NULL), (14, 'client', 'client
', 2, 2, NULL, NULL), (15, 'تطبيق جوال', 'علي قدر المسئولية ونفذ العمل بجودة واتقان فريق عمل مميز جدا كان علي قدر المسئولية ونفذ العمل بجودة واتقان
', 1, 6, NULL, NULL), (16, 'mobileApp', 'علي قدر المسئولية ونفذ العمل بجودة واتقان فريق عمل مميز جدا كان علي قدر المسئولية ونفذ العمل بجودة واتقان
', 2, 6, NULL, NULL), (17, 'محمد أحمد', 'علي قدر المسئولية ونفذ العمل بجودة واتقان فريق عمل مميز جدا كان علي قدر المسئولية ونفذ العمل بجودة واتقان
', 1, 1, NULL, NULL), (18, 'Mohamed Ahmed', 'good team
', 2, 1, NULL, NULL), (21, 'تست2', 'يسب
', 1, 7, NULL, NULL), (22, 'تست', 'سي
', 2, 7, NULL, NULL); -- Dumping structure for table income_db.failed_jobs CREATE TABLE IF NOT EXISTS `failed_jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(191) NOT NULL, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`), UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.failed_jobs: ~0 rows (approximately) -- Dumping structure for table income_db.languages CREATE TABLE IF NOT EXISTS `languages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `local` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT 'whether the language is active in the website or not, 1-> is active', `admin_status` tinyint(4) NOT NULL DEFAULT 1 COMMENT 'whether the language is active in the dashboard or not, 1-> is active', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `languages_local_unique` (`local`), KEY `languages_status_index` (`status`), KEY `languages_admin_status_index` (`admin_status`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.languages: ~2 rows (approximately) INSERT INTO `languages` (`id`, `local`, `name`, `status`, `admin_status`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'ar', 'Arabic', 1, 1, NULL, NULL, NULL), (2, 'en', 'English', 1, 1, NULL, NULL, NULL); -- Dumping structure for table income_db.mail_lists CREATE TABLE IF NOT EXISTS `mail_lists` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `send_to` varchar(191) DEFAULT NULL, `subject` varchar(191) DEFAULT NULL, `message` text DEFAULT NULL, `categories` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `mail_lists_id_index` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.mail_lists: ~0 rows (approximately) -- Dumping structure for table income_db.migrations CREATE TABLE IF NOT EXISTS `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.migrations: ~36 rows (approximately) INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_100000_create_password_reset_tokens_table', 1), (2, '2019_08_19_000000_create_failed_jobs_table', 1), (3, '2019_12_14_000001_create_personal_access_tokens_table', 1), (4, '2024_07_02_130330_create_users_table', 1), (5, '2024_07_02_132852_create_modules_table', 1), (6, '2024_07_02_132945_create_user_modules_table', 1), (7, '2024_07_02_144431_create_settings_table', 1), (8, '2024_07_02_150704_create_languages_table', 1), (9, '2024_07_02_165131_create_categories_table', 1), (10, '2024_07_02_165304_create_articles_table', 1), (11, '2024_07_02_170030_create_article_descriptions_table', 1), (12, '2024_07_02_170334_create_website_visitors_table', 1), (13, '2024_07_03_231744_create_careers_table', 1), (14, '2024_07_03_231903_create_career_descriptions_table', 1), (15, '2024_07_03_235803_create_visitor_jobs_table', 1), (16, '2024_07_10_212553_create_category_descriptions_table', 1), (17, '2024_07_10_213318_create_pages_table', 1), (18, '2024_07_10_214901_create_partners_table', 1), (19, '2024_07_10_220642_create_services_table', 1), (20, '2024_07_10_220821_create_service_descriptions_table', 1), (21, '2024_07_10_221157_create_photo_categories_table', 1), (22, '2024_07_10_221319_create_photo_category_descriptions_table', 1), (23, '2024_07_11_145037_create_partner_descriptions_table', 1), (24, '2024_07_11_145646_create_newsletters_table', 1), (25, '2024_07_12_111219_create_clients_table', 1), (26, '2024_07_12_111440_create_client_descriptions_table', 1), (27, '2024_07_12_144054_create_website_disabled_table', 1), (28, '2024_07_13_100901_create_partner_photos_table', 1), (29, '2024_07_14_091333_add_title_to_visitor_jobs', 1), (30, '2024_07_14_152345_create_photos_table', 1), (31, '2024_07_14_153005_create_photo_descriptions_table', 1), (32, '2024_07_15_161932_create_visitor_messages_table', 1), (33, '2024_07_15_162302_create_visitor_emails_table', 1), (34, '2024_07_15_165727_create_mail_lists_table', 1), (35, '2024_07_17_005642_add_youtube_url_to_photo_table', 1), (36, '2024_07_17_150917_create_page_descriptions_table', 1), (37, '2024_07_17_151442_create_banners_table', 1), (38, '2024_07_17_152152_create_banner_descriptions_table', 1), (39, '2024_07_18_093954_create_numbers_table', 1), (40, '2024_07_18_094250_create_number_descriptions_table', 1); -- Dumping structure for table income_db.modules CREATE TABLE IF NOT EXISTS `modules` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `path` varchar(50) NOT NULL, `meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.modules: ~13 rows (approximately) INSERT INTO `modules` (`id`, `name`, `path`, `meta`, `created_at`, `updated_at`, `deleted_at`) VALUES (29, 'Settings', 'settings', '{"module_name":{"ar":"\\u0627\\u0644\\u0625\\u0639\\u062f\\u0627\\u062f\\u062a","en":"Settings"},"fields":{"ar":{"add_new":"\\u0625\\u0636\\u0627\\u0641\\u0629 \\u0623\\u0639\\u062f\\u0627\\u062f\\u062a","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 \\u0627\\u0644\\u0625\\u0639\\u062f\\u0627\\u062f\\u062a","website_disable":"\\u062a\\u0639\\u0637\\u064a\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639","dashboard_disable":"\\u062a\\u0639\\u0637\\u064a\\u0644 \\u0644\\u0648\\u062d\\u0629 \\u0627\\u0644\\u062a\\u062d\\u0643\\u0645","website_name":"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639","Keywords":"\\u0627\\u0644\\u0643\\u0644\\u0645\\u0627\\u062a \\u0627\\u0644\\u062f\\u0644\\u064a\\u0644\\u064a\\u0629","meta_description":"\\u0627\\u0644\\u0643\\u0644\\u0645\\u0627\\u062a \\u0627\\u0644\\u0648\\u0635\\u0641\\u064a\\u0629","site_email":"\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639","site_address":"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639","site_phone":"\\u062c\\u0648\\u0627\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639","mail_driver":"Mail Driver(SMTP)","mail_host":"Mail Host (smtp.example.com)","mail_port":"Mail Port (2525)","mail_username":"Mail Username(username@example.cm)","mail_password":"Mail password","mail_encryption":"Mail Encryption(tls)","mail_from_address":"Mail From address(info@example.com)","mail_from_name":"Mail From Name(Example)","website_logo":"\\u0644\\u0648\\u062c\\u0648 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639"},"en":{"add_new":"Add Settings","edit":"Edit Settings","website_disable":"Website Disabled","dashboard_disable":"Dashboard Disabled","website_name":"Website Name","Keywords":"Keywords","meta_description":"Meta Description","site_email":"Website Email","site_address":"Website Address","site_phone":"Website Phone","mail_driver":"Mail Driver(SMTP)","mail_host":"Mail Host (smtp.example.com)","mail_port":"Mail Port (2525)","mail_username":"Mail Username(username@example.cm)","mail_password":"Mail password","mail_encryption":"Mail Encryption(tls)","mail_from_address":"Mail From address(info@example.com)","mail_from_name":"Mail From Name(Example)","website_logo":"Website Logo"}}}', NULL, NULL, NULL), (30, 'Users', 'users', '{"module_name":{"ar":"\\u0627\\u0644\\u0645\\u0634\\u0631\\u0641\\u064a\\u0646","en":"Users"},"fields":{"ar":{"add_new":"\\u0625\\u0636\\u0627\\u0641\\u0629 \\u0645\\u0634\\u0631\\u0641 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 \\u0645\\u0634\\u0631\\u0641","name":"\\u0627\\u0644\\u0625\\u0633\\u0645","email":"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a","phone":"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062c\\u0648\\u0627\\u0644","photo":"\\u0635\\u0648\\u0631\\u0629 \\u0627\\u0644\\u0628\\u0631\\u0648\\u0641\\u0627\\u064a\\u0644","password":"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631","password_confirmation":"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631","modules":"\\u0627\\u0644\\u0645\\u0648\\u062f\\u064a\\u0648\\u0644\\u0627\\u062a"},"en":{"add_new":"Add New User","edit":"Edit User","name":"The name","email":"The email","phone":"The Phone","photo":"The Photo","password":"Password","password_confirmation":"Password Confirmation","modules":"Modules"}}}', NULL, NULL, NULL), (31, 'Partners', 'partners', '{"module_name":{"ar":"\\u0634\\u0631\\u0643\\u0627\\u0621 \\u0627\\u0644\\u0646\\u062c\\u0627\\u062d","en":"partners"},"fields":{"ar":{"add_new":"\\u0625\\u0636\\u0627\\u0641\\u0629 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644","title":"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0634\\u0631\\u064a\\u0643","description":"\\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644","image":"\\u0627\\u0644\\u0635\\u0648\\u0631\\u0629"},"en":{"add_new":"Add new","edit":"Edit","title":"Title","description":"Description","image":"Image"}}}', NULL, NULL, NULL), (32, 'Clients', 'clients', '{"module_name":{"ar":"\\u0627\\u0631\\u0627\\u0621 \\u0627\\u0644\\u0639\\u0645\\u0644\\u0627\\u0621","en":"Clients"},"fields":{"ar":{"head":"\\u0627\\u0631\\u0627\\u0621 \\u0627\\u0644\\u0639\\u0645\\u0644\\u0627\\u0621","menuIcon":"fas fa-camera","new":"\\u0625\\u0636\\u0627\\u0641\\u0629 \\u0631\\u0627\\u064a \\u0639\\u0645\\u064a\\u0644 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u062d\\u0631\\u064a\\u0631 \\u0639\\u0645\\u064a\\u0644","image":"\\u0627\\u0644\\u0635\\u0648\\u0631\\u0629","title":"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644","description":"\\u0627\\u0644\\u0648\\u0635\\u0641 "},"en":{"add_new":"Add New Client","edit":"Edit Client","image":"Image","title":"title","description":"description "}}}', NULL, NULL, NULL), (33, 'Pages', 'pages', '{"module_name":{"ar":"\\u0627\\u0644\\u0635\\u0641\\u062d\\u0627\\u062a","en":"Pages"},"fields":{"ar":{"add_new":"\\u0627\\u0636\\u0627\\u0641\\u0629 \\u0635\\u0641\\u062d\\u0629 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 \\u0635\\u0641\\u062d\\u0629"},"en":{"add_new":"Add New Page","edit":"Edit Page"}}}', NULL, NULL, NULL), (34, 'Numbers', 'numbers', '{"module_name":{"ar":"\\u0627\\u0631\\u0642\\u0627\\u0645\\u0646\\u0627","en":"numbers"},"fields":{"ar":{"head":"\\u0627\\u0631\\u0642\\u0627\\u0645\\u0646\\u0627","menuIcon":"fas fa-pager","title":"\\u0639\\u0646\\u0648\\u0627\\u0646","new":"\\u0625\\u0636\\u0627\\u0641 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 ","image":"\\u0635\\u0648\\u0631\\u0629 ","counter":"\\u0627\\u0644\\u0631\\u0642\\u0645"},"en":{"head":"Numbers","menuIcon":"fas fa-pager","title":"Title","new":"Add new","edit":"Edit","image":"Image","counter":"Number"}}}', NULL, NULL, NULL), (35, 'banners', 'banners', '{"module_name":{"ar":"\\u0627\\u0644\\u0628\\u0646\\u0631","en":"banners"},"fields":{"ar":{"head":"\\u0627\\u0644\\u0628\\u0646\\u0631","menuIcon":"fas fa-pager","title":"\\u0639\\u0646\\u0648\\u0627\\u0646","description":"\\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644","new":"\\u0625\\u0636\\u0627\\u0641 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 ","image":"\\u0635\\u0648\\u0631\\u0629 ","video":"\\u0641\\u064a\\u062f\\u064a\\u0648"},"en":{"head":"Banner","menuIcon":"fas fa-pager","title":"Title","description":"Description","new":"Add new","edit":"Edit","image":"Image","video":"Video"}}}', NULL, NULL, NULL), (36, 'photoCategories', 'photoCategories', '{"module_name":{"ar":"\\u0627\\u0644\\u0645\\u0639\\u0631\\u0636","en":"Photos Galleries"},"fields":{"ar":{"edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 \\u0627\\u0644\\u0623\\u0644\\u0628\\u0648\\u0645","name":"\\u0627\\u0644\\u0625\\u0633\\u0645","slug":"The Url Slug","images":"\\u0635\\u0648\\u0631 \\u0627\\u0644\\u0623\\u0644\\u0628\\u0648\\u0645","add_new":"\\u0625\\u0636\\u0627\\u0641\\u0629 \\u0627\\u0644\\u0628\\u0648\\u0645 \\u062c\\u062f\\u064a\\u062f","image_title":"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0635\\u0648\\u0631\\u0629","add_new_item":"\\u0625\\u0636\\u0627\\u0641\\u0629 \\u0635\\u0648\\u0631\\u0629","gallery_title":"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0623\\u0644\\u0628\\u0648\\u0645"},"en":{"edit":"Edit Photo Gallery","name":"The Name","slug":"The Url Slug","images":"Album Photos","add_new":"Add New Gallery","image_title":"Image Title","add_new_item":"Add New Item","gallery_title":"Gallery Title"}}}', NULL, NULL, NULL), (37, 'Newsletters', 'newsletters', '{"module_name":{"ar":"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f\\u064a\\u0629","en":"newsletters"},"fields":{"ar":{"head":"\\u0627\\u0644\\u0646\\u0634\\u0631\\u0627\\u062a \\u0627\\u0644\\u0625\\u062e\\u0628\\u0627\\u0631\\u064a\\u0629","menuIcon":"fas fa-newspaper","new":"\\u0625\\u0631\\u0633\\u0627\\u0644 \\u0631\\u0633\\u0627\\u0644\\u0629 \\u062c\\u062f\\u064a\\u062f\\u0629","email":"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a","send_to":"\\u0625\\u0631\\u0633\\u0627\\u0644 \\u0625\\u0644\\u0649 ","all":"\\u0627\\u0644\\u0643\\u0644","select":"\\u0627\\u062e\\u062a\\u0631","subject":"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0646\\u0634\\u0631\\u0629 \\u0627\\u0644\\u0625\\u062e\\u0628\\u0627\\u0631\\u064a\\u0629","message":"\\u0631\\u0633\\u0627\\u0644\\u0629 \\u0627\\u0644\\u0646\\u0634\\u0631\\u0629 \\u0627\\u0644\\u0625\\u062e\\u0628\\u0627\\u0631\\u064a\\u0629","categories":"\\u0627\\u0644\\u062a\\u0636\\u0646\\u064a\\u0641\\u0627\\u062a","email_success":"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0627\\u0644\\u0646\\u0634\\u0631\\u0629 \\u0627\\u0644\\u0625\\u062e\\u0628\\u0627\\u0631\\u064a\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d","newsletter_subscribe_success":"\\u062a\\u0645 \\u0627\\u0644\\u0625\\u0634\\u062a\\u0631\\u0627\\u0643 \\u0628\\u0646\\u062c\\u0627\\u062d","subscribe_newsletter_before":"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0634\\u062a\\u0631\\u0643 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644!","mail_list":"\\u0642\\u0627\\u0626\\u0645\\u0629 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f","mail_list_more":"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0642\\u0627\\u0626\\u0645\\u0629 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f","more":"\\u0627\\u0642\\u0631\\u0623 \\u0623\\u0643\\u062b\\u0631","no_message":"\\u0644\\u0627 \\u062a\\u0648\\u062c\\u062f \\u0631\\u0633\\u0627\\u0644\\u0629 \\u062a\\u0631\\u0633\\u0644!"},"en":{"head":"News Letters","menuIcon":"fas fa-newspaper","new":"Send new Message","email":"The email","send_to":"Send to","all":"All","select":"Select","subject":"Subject of Newsletters","message":"Message of Newsletters","categories":"Select Categories","email_success":"Newsletter send successfully","newsletter_subscribe_success":"Subscribe in newsletter successfully","subscribe_newsletter_before":"Email subscribed already!","mail_list":"Mail list","mail_list_more":"Mail list Information","more":"Read more","no_message":"No message send !"}}}', NULL, NULL, NULL), (38, 'visitorMessages', 'visitorMessages', '{"module_name":{"ar":" \\u0627\\u062a\\u0635\\u0644 \\u0628\\u0646\\u0627 ","en":"visitorMessages"},"fields":{"ar":{"head":"\\u0631\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631","menuIcon":"fas fa-envelope","new":"\\u0627\\u0644\\u0631\\u062f \\u0639\\u0644\\u0649 \\u0631\\u0633\\u0627\\u0644\\u0629 \\u062c\\u062f\\u064a\\u062f\\u0629","name":"\\u0627\\u0644\\u0625\\u0633\\u0645","email":"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a","send_to":"\\u0625\\u0631\\u0633\\u0627\\u0644 \\u0625\\u0644\\u0649","from":"\\u0645\\u0646","select":"\\u0625\\u062e\\u062a\\u0631","subject":"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629","message":"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629","email_success":"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0627\\u0644\\u0631\\u062f \\u0628\\u0646\\u062c\\u0627\\u062d","phone":"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062c\\u0648\\u0627\\u0644","message_subject":"\\u0631\\u0633\\u0627\\u0644\\u0629 \\u062c\\u062f\\u064a\\u062f\\u0629 \\u0645\\u0646 \\u0627\\u062d\\u062f \\u0632\\u0648\\u0627\\u0631 \\u0645\\u0648\\u0642\\u0639 :website_name :"},"en":{"head":"Visitor Messages","menuIcon":"fas fa-envelope","new":"Reply new message","name":"The name","email":"The email","send_to":"Send to","from":"From","select":"Select","subject":"Subject of message","message":"The message","email_success":"Reply send successfully","message_subject":"New Message from a visitor of :website_name website: "}}}', NULL, NULL, NULL), (39, 'Services', 'services', '{"module_name":{"ar":"\\u0627\\u0644\\u062e\\u062f\\u0645\\u0627\\u062a","en":"services"},"fields":{"ar":{"add_new":"\\u0627\\u0636\\u0627\\u0641\\u0629 \\u062e\\u062f\\u0645\\u0629 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 \\u062e\\u062f\\u0645\\u0629","name":"\\u0627\\u0644\\u0627\\u0633\\u0645"},"en":{"add_new":"Add New Service","edit":"Edit Service","name":"The Name"}}}', NULL, NULL, NULL), (40, 'careers', 'careers', '{"module_name":{"ar":"\\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641","en":"works"},"fields":{"ar":{"add_new":"\\u0627\\u0636\\u0627\\u0641\\u0629 \\u0648\\u0638\\u064a\\u0641\\u0629 \\u062c\\u062f\\u064a\\u062f","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 \\u0648\\u0638\\u064a\\u0641\\u0629 ","name":"2\\u0625\\u0633\\u0645 \\u0627\\u0644\\u0648\\u0638\\u064a\\u0641\\u0629"},"en":{"add_new":"Add New Job","edit":"Edit Job","name":"Job Title2"}}}', NULL, NULL, NULL), (41, 'VisitorJobs', 'visitorJobs', '{"module_name":{"ar":"\\u0637\\u0644\\u0628\\u0627\\u062a \\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641","en":"visitorJobs"},"fields":{"ar":{"new":"\\u0625\\u0636\\u0627\\u0641\\u0629 \\u0648\\u0638\\u064a\\u0641\\u0629 \\u062c\\u062f\\u064a\\u062f\\u0629","edit":"\\u062a\\u0639\\u062f\\u064a\\u0644 \\u0648\\u0638\\u064a\\u0641\\u0629","title":"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0648\\u0638\\u064a\\u0641\\u0629","apply":"\\u0627\\u0644\\u062a\\u0642\\u062f\\u064a\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0648\\u0638\\u064a\\u0641\\u0629","show_available":"\\u062a\\u0635\\u0641\\u062d \\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641 \\u0627\\u0644\\u0645\\u062a\\u0627\\u062d\\u0629","name":"\\u0627\\u0633\\u0645 \\u0645\\u0642\\u062f\\u0645 \\u0627\\u0644\\u0637\\u0644\\u0628","email":"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a","phone":"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0635\\u0644","notes":"\\u0627\\u0644\\u0645\\u0644\\u0627\\u062d\\u0638\\u0627\\u062a","cv":"\\u0627\\u0644\\u0633\\u064a\\u0631\\u0629 \\u0627\\u0644\\u0630\\u0627\\u062a\\u064a\\u0629","career_id":"\\u0627\\u0644\\u0648\\u0638\\u064a\\u0641\\u0629","allowed_files":"\\u0627\\u0644\\u0645\\u0644\\u0641\\u0627\\u062a \\u0627\\u0644\\u0645\\u062f\\u0639\\u0648\\u0645\\u0629 => PDF \\u0648\\u0644\\u0627 \\u064a\\u062a\\u0639\\u062f\\u0649 \\u062d\\u062c\\u0645\\u0647\\u0627 2 MB","form_title":"\\u0646\\u0645\\u0648\\u0630\\u062c \\u0637\\u0644\\u0628 \\u062a\\u0648\\u0638\\u064a\\u0641","form":"\\u0627\\u0633\\u062a\\u0645\\u0627\\u0631\\u0629"},"en":{"new":"Add New Job","edit":"Edit Job","title":"Job Title","apply":"Apply for Job","show_available":"Browse Available Jobs","name":"Applicant Name","email":"Email Address","phone":"Phone Number","notes":"Notes","cv":"CV","career_id":"Job","allowed_files":"Supported files => PDF, max size 2 MB","form_title":"Employment Application Form","form":"Form"}}}', NULL, NULL, NULL); -- Dumping structure for table income_db.newsletters CREATE TABLE IF NOT EXISTS `newsletters` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.newsletters: ~9 rows (approximately) INSERT INTO `newsletters` (`id`, `email`, `deleted_at`, `created_at`, `updated_at`) VALUES (12, 'yomna@yahoo.com', NULL, '2024-07-26 21:13:54', '2024-07-26 21:13:54'), (13, 'ahmed@gghh.com', NULL, '2024-07-28 08:08:41', '2024-07-28 08:08:41'), (14, 'yomn2a@yahoo.com', NULL, '2024-07-28 08:16:10', '2024-07-28 08:16:10'), (15, 'aboro2a83@gmail.com', NULL, '2024-07-28 08:26:31', '2024-07-28 08:26:31'), (16, 'yomna3@yahoo.com', NULL, '2024-07-28 08:27:36', '2024-07-28 08:27:36'), (17, 'abo888ro2a83@gmail.com', NULL, '2024-07-28 08:31:23', '2024-07-28 08:31:23'), (18, 'mah_zanaty@yahoo.com', NULL, '2024-07-28 08:32:15', '2024-07-28 08:32:15'), (19, 'test@testt.com', NULL, '2024-07-28 18:33:16', '2024-07-28 18:33:16'), (20, 'mah@yahoo.com', NULL, '2024-07-28 18:35:33', '2024-07-28 18:35:33'); -- Dumping structure for table income_db.numbers CREATE TABLE IF NOT EXISTS `numbers` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `counter` bigint(20) DEFAULT NULL, `image` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.numbers: ~3 rows (approximately) INSERT INTO `numbers` (`id`, `counter`, `image`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 15, 'storage/photos/shares/statics-2.svg', '2024-07-18 07:53:12', '2024-07-25 17:04:42', NULL), (2, 500, 'storage/photos/shares/statics-1.svg', '2024-07-21 08:28:38', '2024-07-25 17:04:03', NULL), (3, 20, 'storage/photos/shares/statics-3.svg', '2024-07-25 13:08:12', '2024-07-29 20:45:51', NULL); -- Dumping structure for table income_db.number_descriptions CREATE TABLE IF NOT EXISTS `number_descriptions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(150) DEFAULT NULL, `number_id` bigint(20) unsigned DEFAULT NULL, `language_id` bigint(20) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `number_descriptions_number_id_index` (`number_id`), KEY `number_descriptions_language_id_index` (`language_id`), CONSTRAINT `number_descriptions_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `number_descriptions_number_id_foreign` FOREIGN KEY (`number_id`) REFERENCES `numbers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Dumping data for table income_db.number_descriptions: ~6 rows (approximately) INSERT INTO `number_descriptions` (`id`, `title`, `number_id`, `language_id`) VALUES (13, 'عميل', 2, 1), (14, 'client', 2, 2), (25, 'موقع', 1, 1), (26, 'location', 1, 2), (27, 'تطبيق جوال', 3, 1), (28, 'mobileApp', 3, 2); -- Dumping structure for table income_db.pages CREATE TABLE IF NOT EXISTS `pages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `image` varchar(200) DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 1, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `image_2` varchar(150) DEFAULT NULL, `image_3` varchar(150) DEFAULT NULL, `image_4` varchar(150) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.pages: ~7 rows (approximately) INSERT INTO `pages` (`id`, `image`, `status`, `deleted_at`, `created_at`, `updated_at`, `image_2`, `image_3`, `image_4`) VALUES (2, 'storage/photos/shares/c.jpg', 1, NULL, '2024-04-14 10:02:46', '2024-05-20 08:53:48', NULL, NULL, NULL), (3, NULL, 1, NULL, '2024-04-14 10:03:22', '2024-05-22 06:02:19', NULL, NULL, NULL), (5, NULL, 1, NULL, '2024-04-14 10:04:15', '2024-04-14 10:04:15', NULL, NULL, NULL), (6, NULL, 1, NULL, '2024-04-14 10:04:54', '2024-04-14 10:04:54', NULL, NULL, NULL), (7, NULL, 1, NULL, '2024-04-14 10:05:13', '2024-04-14 10:05:13', NULL, NULL, NULL), (9, NULL, 1, NULL, '2024-04-14 10:05:49', '2024-07-29 20:43:41', NULL, NULL, NULL), (10, 'storage/photos/shares/6.jpg', 1, '2024-07-29 20:29:02', '2024-04-14 10:05:49', '2024-05-22 09:16:12', 'storage/photos/shares/test.PNG', 'storage/photos/shares/test2.PNG', NULL); -- Dumping structure for table income_db.page_descriptions CREATE TABLE IF NOT EXISTS `page_descriptions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `slug` varchar(100) DEFAULT NULL, `meta_description` text NOT NULL, `keywords` varchar(400) NOT NULL, `description` longtext NOT NULL, `page_id` bigint(20) unsigned DEFAULT NULL, `language_id` bigint(20) unsigned DEFAULT NULL, `vision` longtext DEFAULT NULL, `message` longtext DEFAULT NULL, `value` longtext DEFAULT NULL, `goal` text DEFAULT NULL, `brief` longtext DEFAULT NULL, `no1` text DEFAULT NULL, `no2` text DEFAULT NULL, `no3` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `page_descriptions_page_id_foreign` (`page_id`), KEY `page_descriptions_language_id_foreign` (`language_id`), CONSTRAINT `page_descriptions_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`) ON DELETE CASCADE, CONSTRAINT `page_descriptions_page_id_foreign` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=497 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table income_db.page_descriptions: ~12 rows (approximately) INSERT INTO `page_descriptions` (`id`, `title`, `slug`, `meta_description`, `keywords`, `description`, `page_id`, `language_id`, `vision`, `message`, `value`, `goal`, `brief`, `no1`, `no2`, `no3`, `created_at`, `updated_at`, `deleted_at`) VALUES (357, 'ارقامنا', 'ارقامنا', 'ارقامنا', 'ارقامنا', '', 10, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (358, 'our Numbers', 'our Numbers', 'our Numbers', 'our Numbers', '', 10, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (483, 'رئيس مجلس الادارة', 'رئيس مجلس الادارة', 'رئيس مجلس الادارة', 'رئيس مجلس الادارة', 'تبويب مؤسسة سعودية متخصصة في مجال تصميم البرمجيات الخاصة وحلول الفوترة الإلكترونية ونظم المال والأعمال وتصميم مواقع الويب وتطبيقات الهواتف الذكية.
', '', '', '', NULL, NULL, NULL), (486, 'About Us', 'About Us', 'About Us', 'About Us', 'Tabweeb is a Saudi institution specialized in the field of designing special software, electronic billing solutions, financial and business systems, designing websites and smart phone applications.
Better than getting a website design or creating an online store that no one knows!!. We work on managing your company\'s brand professionally. From identity design, Better than getting a website design or creating an online store that no one knows!!. We work on managing your company\'s brand professionally. From identity design,
Tabweeb is a Saudi institution specialized in the field of designing special software, electronic billing solutions, financial and business systems, designing websites and smart phone applications.
Taboo is a Saudi institution specialized in designing special software, electronic billing solutions, financial and business systems, designing websites, and smart phone applications.
', '', '', '', NULL, NULL, NULL), (487, 'بطاقات الرؤية والرسالة والاهداف والقيم', 'بطاقات الرؤية والرسالة والاهداف والقيم', 'بطاقات الرؤية والرسالة والاهداف والقيم', 'بطاقات الرؤية والرسالة والاهداف والقيم', '', 3, 1, 'أكبر من حصولك على تصميم موقع أو انشاء متجر
\r\nالكتروني لا يعرفه أحد !!. نحن نعمل على إدارة العلامة
\r\nالتجارية لشركتك باحترافية. من تصميم الهوية، أكبر من حصولك
\r\nالعلامة التجارية لشركتك باحترافية. من تصميم الهوية،
\r\nأكبر من حصولك على تصميم موقع أو انشاء متجر
\r\nالكتروني لا يعرفه أحد !!. نحن نعمل على إدارة العلامة
\r\nالتجارية لشركتك باحترافية. من تصميم الهوية، أكبر من حصولك
\r\nالعلامة التجارية لشركتك باحترافية. من تصميم الهوية،
\r\nأكبر من حصولك على تصميم موقع أو انشاء متجر
\r\nالكتروني لا يعرفه أحد !!. نحن نعمل على إدارة العلامة
\r\nالتجارية لشركتك باحترافية. من تصميم الهوية، أكبر من حصولك
\r\nالعلامة التجارية لشركتك باحترافية. من تصميم الهوية،
\r\nIt is more than getting a website design or creating an online store that no one knows about!! We work on managing your company\'s brand professionally. From identity design, it is more than getting your company\'s brand professionally. From identity design,
', 'It is more than getting a website design or creating an online store that no one knows about!! We work on managing your company\'s brand professionally. From identity design, it is more than getting your company\'s brand professionally. From identity design,
', '', 'It is more than getting a website design or creating an online store that no one knows about!! We work on managing your company\'s brand professionally. From identity design, it is more than getting your company\'s brand professionally. From identity design,
', '', '', '', '', NULL, NULL, NULL), (491, 'الشروط والاحكام', 'الشروط والاحكام', 'الشروط والاحكام', 'الشروط والاحكام', 'هناك حقيقة مثبتة منذ زمن طويل وهي أن المحتوى المقروء لصفحة ما سيلهي القارئ عن التركيز على الشكل الخارجي للنص أو شكل توضع الفقرات في الصفحة التي يقرأها. ولذلك يتم استخدام طريقة لوريم إيبسوم لأنها تعطي توزيعاَ طبيعياَ -إلى حد ما- للأحرف عوضاً عن استخدام "هنا يوجد محتوى نصي، هنا يوجد محتوى نصي" فتجعلها تبدو (أي الأحرف) وكأنها نص مقروء. العديد من برامح النشر المكتبي وبرامح تحرير صفحات الويب تستخدم لوريم إيبسوم بشكل إفتراضي كنموذج عن النص، وإذا قمت بإدخال "lorem ipsum" في أي محرك بحث ستظهر العديد من المواقع الحديثة العهد في نتائج البحث. على مدى السنين ظهرت نسخ جديدة ومختلفة من نص لوريم إيبسوم، أحياناً عن طريق الصدفة، وأحياناً عن عمد كإدخال بعض العبارات الفكاهية إليها.
\r\nهنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما بعض النوادر أو الكلمات العشوائية إلى النص. إن
\r\nكنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل
\r\nجميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا
\r\nباستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل
\r\nمنطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص
\r\nلوريم إيبسوم حقيقي على الإنترنت .اكبر من حصولك على تصميم موقع أو انشاء متجر الكتروني لا يعرفه أحد !!. نحن نعمل على إدارة العلامة التجارية
\r\nلشركتك باحترافية. من تصميم الهوية،تبويب مؤسسة سعودية متخصصة في مجال تصميم البرمجيات الخاصة وحلول الفوترة الإلكترونية ونظم المال
\r\nوالأعمال وتصميم مواقع الويب وتطبيقات الهواتف الذكية.
', 5, 1, '', '', '', '', '', '', '', '', NULL, NULL, NULL), (492, 'Terms And Conditions', 'Terms And Conditions', 'Terms And Conditions', 'Terms And Conditions', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many new web sites in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, injected humour, or randomised words which don\'t look even slightly believable. If
\r\nyou want to use a Lorem Ipsum text, you need to first check that there aren\'t any embarrassing or inappropriate words or phrases hidden in the middle of text. While
\r\nall the Lorem Ipsum generators on the Internet re-create chunks of the same Lorem Ipsum text as necessary, this one
\r\nuses words from a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum text that looks
\r\nlogically close to the real text. The resulting text is therefore free of repetition, inappropriate words or phrases, etc. This makes it the first real
\r\nLorem Ipsum generator on the Internet. Greater than getting a website design or creating an online store that no one knows!! We work on managing the brand
\r\nof your company professionally. From identity design, Tabweb is a Saudi company specialized in designing special software, electronic billing solutions, financial systems, business, and designing websites and smart phone applications.
', 5, 2, '', '', '', '', '', '', '', '', NULL, NULL, NULL), (493, 'سياسة الخصوصية2', 'سياسة الخصوصية', 'سياسة الخصوصية', 'سياسة الخصوصية', '2هناك حقيقة مثبتة منذ زمن طويل وهي أن المحتوى المقروء لصفحة ما سيلهي القارئ عن التركيز على الشكل الخارجي للنص أو شكل توضع الفقرات في الصفحة التي يقرأها. ولذلك يتم استخدام طريقة لوريم إيبسوم لأنها تعطي توزيعاَ طبيعياَ -إلى حد ما- للأحرف عوضاً عن استخدام "هنا يوجد محتوى نصي، هنا يوجد محتوى نصي" فتجعلها تبدو (أي الأحرف) وكأنها نص مقروء. العديد من برامح النشر المكتبي وبرامح تحرير صفحات الويب تستخدم لوريم إيبسوم بشكل إفتراضي كنموذج عن النص، وإذا قمت بإدخال "lorem ipsum" في أي محرك بحث ستظهر العديد من المواقع الحديثة العهد في نتائج البحث. على مدى السنين ظهرت نسخ جديدة ومختلفة من نص لوريم إيبسوم، أحياناً عن طريق الصدفة، وأحياناً عن عمد كإدخال بعض العبارات الفكاهية إليها.
\r\nهنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما بعض النوادر أو الكلمات العشوائية إلى النص. إن
\r\nكنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل
\r\nجميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا
\r\nباستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل
\r\nمنطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص
\r\nلوريم إيبسوم حقيقي على الإنترنت .اكبر من حصولك على تصميم موقع أو انشاء متجر الكتروني لا يعرفه أحد !!. نحن نعمل على إدارة العلامة التجارية
\r\nلشركتك باحترافية. من تصميم الهوية،تبويب مؤسسة سعودية متخصصة في مجال تصميم البرمجيات الخاصة وحلول الفوترة الإلكترونية ونظم المال
\r\nوالأعمال وتصميم مواقع الويب وتطبيقات الهواتف الذكية.
', 7, 1, '', '', '', '', '', '', '', '', NULL, NULL, NULL), (494, 'Privacy Policy', 'Privacy Policy', 'Privacy Policy', 'Privacy Policy', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many new web sites in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, injected humour, or randomised words which don\'t look even slightly believable. If
\r\nyou want to use a Lorem Ipsum text, you need to first check that there aren\'t any embarrassing or inappropriate words or phrases hidden in the middle of text. While
\r\nall the Lorem Ipsum generators on the Internet re-create chunks of the same Lorem Ipsum text as necessary, this one
\r\nuses words from a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum text that looks
\r\nlogically close to the real text. The resulting text is therefore free of repetition, inappropriate words or phrases, etc. This makes it the first real
\r\nLorem Ipsum generator on the Internet. Greater than getting a website design or creating an online store that no one knows!! We work on managing the brand
\r\nof your company professionally. From identity design, Tabweb is a Saudi company specialized in designing special software, electronic billing solutions, financial systems, business, and designing websites and smart phone applications.
', 7, 2, '', '', '', '', '', '', '', '', NULL, NULL, NULL), (495, 'النبذة الخاصة بالفوتر', 'https://ahg.omar.alyomhost.org/', 'النبذة الخاصة بالفوتر', 'النبذة الخاصة بالفوتر', 'جعلت إدارتنا القوية من أولوياتنا القصوى جذب المواهب والاحتفاظ بها بمهارات مهنية عالية في مختلف المجالات.
', 9, 1, '', '', '', '', '', '', '', '', NULL, NULL, NULL), (496, 'Profile of footer', 'https://ahg.omar.alyomhost.org/', 'Profile of footer', 'Profile of footer', 'Our strong management is our top priority Attracting professional talents High retention of skills Various fields.
تصميم المواقع
', NULL, 4, 1, NULL, NULL), (10, 'web design', 'web design
', NULL, 4, 2, NULL, NULL), (11, 'تطوير التطبيقات', 'تطوير التطبيقات
', NULL, 5, 1, NULL, NULL), (12, 'Application Development', 'Application Development
', NULL, 5, 2, NULL, NULL), (13, 'تصميم المواقع', 'في عالم رقمي متسارع، أصبح وجود موقع إلكتروني احترافي ضرورة لكل الأعمال. في تبويب، نقدم خدمات تصميم مواقع متكاملة تساهم في تعزيز وجودك الرقمي وجذب العملاء بطريقة فعّالة ومبتكرة.
\r\nخدماتنا في تصميم المواقع
تصميم مخصص
نحن ندرك أن كل عمل له احتياجاته الفريدة، ولذلك نقدم تصميمات مخصصة تلبي احتياجاتك الخاصة وتعكس هوية علامتك التجارية. سواء كنت تحتاج إلى موقع بسيط لعرض خدماتك أو موقع تجارة إلكترونية متكامل، نحن هنا لنحقق رؤيتك.
تجربة مستخدم ممتازة
نسعى لتقديم تجربة مستخدم سلسة وممتعة من خلال تصميم مواقع بواجهة مستخدم بسيطة وسهلة الاستخدام. نحن نركز على تحسين التجربة العامة للزوار لضمان تحقيق أهدافك من الموقع.
متجاوبة مع جميع الأجهزة
تصميم المواقع لدينا يتميز بالتجاوب الكامل مع جميع الأجهزة، سواء كانت أجهزة كمبيوتر، هواتف ذكية، أو أجهزة لوحية. نحن نضمن أن يظهر موقعك بشكل رائع ويعمل بشكل مثالي على جميع الشاشات.
تحسين محركات البحث (SEO)
نعمل على تحسين مواقعنا لمحركات البحث لضمان ظهورها في نتائج البحث الأولى، مما يساهم في زيادة عدد الزوار وتعزيز وجودك الرقمي. نحن نتبع أحدث تقنيات السيو لضمان تحقيق أفضل النتائج.
أمان وحماية
نضع أمان موقعك على رأس أولوياتنا. نستخدم أحدث تقنيات الأمان والحماية لضمان سلامة بياناتك وبيانات عملائك، ولحماية موقعك من أي تهديدات أمنية محتملة.
مراحل تصميم المواقع
التخطيط والاستشارة: نبدأ بفهم احتياجاتك وأهدافك، ونجري استشارة مفصلة لتحديد متطلبات المشروع.
التصميم الأولي: نقدم تصميمات أولية تتناسب مع رؤيتك وهوية علامتك التجارية.
التطوير: بعد الموافقة على التصميم، نبدأ بتطوير الموقع باستخدام أحدث التقنيات لضمان الأداء الأمثل.
الاختبار والتقييم: نقوم بإجراء اختبارات شاملة لضمان خلو الموقع من الأخطاء وعمله بشكل ممتاز.
الإطلاق والمتابعة: بعد الانتهاء من جميع الاختبارات، نقوم بإطلاق الموقع ونقدم دعم فني مستمر لضمان استمرارية عمل الموقع بشكل مثالي.
In an accelerated digital world, having a professional website has become a necessity for all businesses. At Tabweeb, we offer integrated website design services that contribute to enhancing your digital presence and attracting customers in an effective and innovative manner.
\r\nOur web design services
Custom Design
We recognize that every business has its unique needs, so we offer customized designs that meet your specific needs and reflect your brand identity. Whether you need a simple website to display your services or an integrated e-commerce website, we are here to achieve your vision.
Excellent user experience
We strive to provide a seamless and fun user experience by designing websites with a simple and easy-to-use user interface. We focus on improving the general experience of visitors to ensure that your goals are achieved from the site.
Responsive to all devices
Our website design features full responsiveness to all devices, whether it be computers, smartphones, or tablets. We ensure that your site appears great and works perfectly on all screens.
Search Engine Optimization (SEO)
We improve our search engine sites to ensure they appear in the first search results, contributing to increasing the number of visitors and enhancing your digital presence. We follow the latest SEO technology to ensure the best results.
Safety and Protection
We place the security of your site at the top of our priorities. We use the latest security and protection technologies to ensure the integrity of your data and customers\' data, and to protect your site from any potential security threats.
Web Design Stages
Planning and consulting: We begin by understanding your needs and objectives, and conduct a detailed consultation to determine the requirements of the project.
Initial design: We offer initial designs that suit your vision and brand identity.
Development: After design approval, we begin to develop the site using the latest technology to ensure optimal performance.
Testing and Evaluation: We conduct comprehensive testing to ensure that the site is free of errors and works excellent.
Launch and follow-up: After all the tests are completed, we launch the site and provide ongoing technical support to ensure the continuity of the site\'s work perfectly.
برامج الحسابات
\r\nفي تبويب ، نقدم حلولاً متكاملة لإدارة حساباتك بكل سهولة وفعالية. برامج الحسابات لدينا مصممة خصيصاً لتلبية احتياجات الشركات الصغيرة والمتوسطة والكبيرة، مما يساعدك على إدارة عملياتك المالية بكفاءة وشفافية.
\r\nميزات برامج الحسابات لدينا
إدارة الفواتير والمبيعات
إنشاء الفواتير بسهولة: صمم وأرسل الفواتير إلى عملائك بسرعة وسهولة.
متابعة المبيعات: تتبع جميع عمليات البيع بدقة واحصل على تقارير مفصلة لتحليل الأداء.
إدارة المصاريف والمشتريات
تتبع المصاريف: سجل جميع مصاريفك اليومية والشهرية واحصل على نظرة شاملة لمصاريفك.
إدارة المشتريات: تابع مشترياتك واحصل على تقارير مفصلة حول الموردين والمنتجات.
إدارة الحسابات المدينة والدائنة
الحسابات المدينة: تتبع المدفوعات المستحقة من العملاء وأرسل تذكيرات للدفع.
الحسابات الدائنة: إدارة المدفوعات للموردين وتتبع المبالغ المستحقة عليهم.
التقارير المالية
تقارير مالية مفصلة: احصل على تقارير مالية شاملة تساعدك على اتخاذ قرارات مستنيرة.
تحليل الأداء المالي: تابع الأداء المالي لشركتك وقارن بين الفترات الزمنية المختلفة.
التكامل مع الأنظمة الأخرى
تكامل سلس: تكامل برامج الحسابات لدينا مع الأنظمة الأخرى التي تستخدمها في شركتك مثل أنظمة إدارة الموارد البشرية والمخزون.
واجهة برمجة التطبيقات (API): استخدم واجهة برمجة التطبيقات لتكامل برامج الحسابات مع الأنظمة المخصصة لشركتك.
الأمان والحماية
تشفير البيانات: نستخدم تقنيات التشفير الحديثة لضمان حماية بياناتك المالية.
النسخ الاحتياطي: حلول النسخ الاحتياطي التلقائي لضمان استعادة البيانات في حالة حدوث أي مشكلة.
حلول متكاملة للشركات
نحن نقدم برامج حسابات مخصصة لاحتياجات مختلف القطاعات، بما في ذلك:
الشركات الصغيرة والمتوسطة: حلول مرنة وبأسعار معقولة لمساعدتك على إدارة حساباتك بفعالية.
الشركات الكبيرة: حلول متقدمة تلبي احتياجات الشركات الكبيرة والمعقدة مع تقارير وتحليلات مالية متطورة.
In Tabweeb, we offer integrated solutions to manage your accounts with ease and effectiveness. Our account programs are tailored to the needs of small, medium and large businesses, helping you manage your financial operations efficiently and transparently.
\r\nFeatures of our account software
Invoice and Sales Management
Create invoices easily: Design and send invoices to your customers quickly and easily.
Follow-up sales: Track all sales accurately and get detailed performance analysis reports.
Expenditure and Procurement Management
Track expenses: Record all your daily and monthly expenses and get a comprehensive view of your expenses.
Procurement Management: Follow your purchases and get detailed reports about suppliers and products.
Management of Debit and Credit Accounts
Debit accounts: Track outstanding payments from customers and send payment reminders.
Accounts payable: management of payments to suppliers and tracking of amounts owed.
Financial reports
Detailed financial reports: Get comprehensive financial reports that help you make informed decisions.
Financial Performance Analysis: Follow your company\'s financial performance and compare different time periods.
Integration with other systems
Seamless Integration: Integrate our account software with other systems you use in your company such as HRM and inventory systems.
API: Use the API to integrate account software with your company\'s custom systems.
Safety and Protection
Data encryption: We use modern encryption techniques to ensure the protection of your financial data.
Backup: Automatic backup solutions to ensure data recovery in case of any problem.
Integrated Corporate Solutions
We offer custom account programs for the needs of different sectors, including:
SMEs: Flexible and affordable solutions to help you manage your accounts effectively.
Large companies: Advanced solutions that meet the needs of large and complex companies with sophisticated financial reports and analysis.
تطوير التطبيقات
\r\nفي تبويب، نقدم خدمات تطوير تطبيقات الجوال المتكاملة التي تساعدك على الوصول إلى عملائك بسهولة وفعالية. نحن نفهم أهمية التطبيقات في عالم اليوم الرقمي، ونعمل بجد لتقديم حلول مبتكرة وذات جودة عالية تلبي احتياجات عملك.
\r\nخدماتنا في تطوير التطبيقات
تطوير تطبيقات مخصصة
نحن نؤمن بأن كل عمل له احتياجاته الخاصة، لذلك نقدم حلولاً مخصصة لتطوير تطبيقات الجوال تتناسب مع متطلباتك الفردية وتساهم في تحقيق أهدافك. سواء كنت تحتاج إلى تطبيق للأندرويد أو iOS، فريقنا المتخصص جاهز لتقديم أفضل الحلول.
تجربة مستخدم ممتازة
تصميم تجربة مستخدم سلسة وجذابة هو جزء أساسي من خدماتنا. نحرص على أن تكون تطبيقاتنا سهلة الاستخدام وتوفر تجربة مستخدم ممتازة لضمان رضا المستخدمين وزيادة تفاعلهم مع التطبيق.
تطبيقات متجاوبة وعالية الأداء
نحن نضمن أن تطبيقاتنا تعمل بشكل ممتاز على جميع الأجهزة والشاشات، سواء كانت هواتف ذكية أو أجهزة لوحية. تطبيقاتنا مصممة لتكون سريعة الاستجابة وذات أداء عالي لتلبية توقعات المستخدمين.
تكامل مع الأنظمة الأخرى
نقدم حلولاً متكاملة تتيح لتطبيقات الجوال التكامل مع الأنظمة الأخرى التي تستخدمها في عملك، مثل أنظمة إدارة الموارد البشرية، برامج الحسابات، وأنظمة إدارة العلاقات مع العملاء (CRM).
الأمان والحماية
نضع أمان تطبيقاتك على رأس أولوياتنا. نستخدم أحدث تقنيات الأمان والحماية لضمان سلامة بياناتك وبيانات مستخدمي التطبيق، وحمايتها من أي تهديدات أمنية محتملة.
مراحل تطوير التطبيقات
التحليل والتخطيط: نبدأ بفهم احتياجاتك وأهدافك من التطبيق، ونجري تحليل متعمق لتحديد متطلبات المشروع.
التصميم الأولي: نقدم تصميمات أولية لشاشات التطبيق للحصول على موافقتك وضمان توافق التصميم مع رؤيتك.
التطوير: بعد الموافقة على التصميم، نبدأ بتطوير التطبيق باستخدام أحدث التقنيات لضمان الأداء الأمثل.
الاختبار والتقييم: نقوم بإجراء اختبارات شاملة للتأكد من خلو التطبيق من الأخطاء وعمله بشكل ممتاز.
الإطلاق والمتابعة: بعد الانتهاء من جميع الاختبارات، نقوم بإطلاق التطبيق ونقدم دعم فني مستمر لضمان استمرارية عمله بشكل مثالي.
In Tabweeb, we offer integrated mobile app development services that help you reach your customers easily and effectively. We understand the importance of applications in today\'s digital world, and we work hard to deliver innovative and high-quality solutions that meet your business needs.
\r\nOur Services in App Development
Development of customized applications
We believe that every business has its own needs, so we offer customized solutions to develop mobile apps that fit your individual requirements and contribute to the achievement of your goals. Whether you need an app for Android or iOS, our dedicated team is ready to offer the best solutions.
Excellent user experience
Designing a seamless and attractive user experience is an essential part of our services. We ensure that our apps are user friendly and provide an excellent user experience to ensure users\' satisfaction and increase their interaction with the app.
Responsive and high performance applications
We ensure that our apps work excellent on all devices and screens, whether they be smartphones or tablets. Our apps are designed to be responsive and high performance to meet users\' expectations.
Integration with other systems
We offer integrated solutions that allow mobile applications to integrate with other systems you use in your business, such as human resources management systems, account software, and customer relationship management systems (CRM).
Safety and Protection
We place the security of your apps at the top of our priorities. We use state-of-the-art security and protection technologies to ensure the integrity of your data and users\' data, and protect them from any potential security threats.
Phases of application development
Analysis and Planning: We begin by understanding your needs and objectives from the app, and conduct in-depth analysis to determine the requirements of the project.
Initial design: We offer initial designs for app screens to get your approval and ensure the design is compatible with your vision.
Development: After design approval, we begin to develop the application using the latest technology to ensure optimal performance.
Testing & Evaluation: We perform comprehensive testing to make sure the application is error-free and works excellent.
Launch and follow-up: After all the tests are completed, we launch the app and provide continuous technical support to ensure the continuity of its work perfectly.