-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmenus.sql
More file actions
224 lines (219 loc) · 39.2 KB
/
menus.sql
File metadata and controls
224 lines (219 loc) · 39.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
DROP TABLE IF EXISTS `menus`;
CREATE TABLE `menus` (
`id` INT PRIMARY KEY AUTO_INCREMENT,
`parent_id` INT NULL,
`key` VARCHAR(255),
`route` VARCHAR(255),
`route_slug` VARCHAR(255),
`label` VARCHAR(255),
`icon` VARCHAR(255),
`svg` VARCHAR(255),
`order` INT,
`is_active` TINYINT,
`params` TEXT,
`type` VARCHAR(255),
`extension` VARCHAR(255),
`bolt_menu` TINYINT,
`bolt_background` VARCHAR(255),
`bolt_foreground` VARCHAR(255),
`letter_icon` TINYINT,
`letter_icon_bg` VARCHAR(255),
`created_at` DATETIME,
`updated_at` DATETIME,
`custom_menu` TINYINT
);
INSERT INTO `menus` (`id`, `parent_id`, `key`, `route`, `route_slug`, `label`, `icon`, `svg`, `order`, `is_active`, `params`, `type`, `extension`, `bolt_menu`, `bolt_background`, `bolt_foreground`, `letter_icon`, `letter_icon_bg`, `created_at`, `updated_at`, `custom_menu`)
VALUES
(1, NULL, 'user_label', NULL, NULL, 'User', NULL, NULL, 0, 1, '[]', 'label', '0', 0, NULL, NULL, 1, 'bg-[#7A8193] text-white', '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(2, NULL, 'dashboard', 'dashboard.user.index', NULL, 'Dashboard', 'tabler-layout-2', NULL, 1, 1, '[]', 'item', '0', 1, '#9A6FFD', '#fff', 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(3, NULL, 'ext_chat_bot', 'dashboard.chatbot.index', NULL, 'AI Bots', 'tabler-message-chatbot', NULL, 53, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(4, NULL, 'documents', 'dashboard.user.openai.documents.all', NULL, 'My Documents', 'tabler-archive', NULL, 2, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(5, NULL, 'ai_editor', 'dashboard.user.generator.index', NULL, 'AI Documents', 'tabler-notebook', NULL, 15, 1, '[]', 'item', '0', 1, '#E29CB6', '#fff', 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(6, NULL, 'ai_writer', 'dashboard.user.openai.list', NULL, 'AI Writer', 'tabler-notes', NULL, 18, 1, '[]', 'item', '0', 1, '#468EA6', '#fff', 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(7, NULL, 'ai_video', 'dashboard.user.openai.generator', 'ai_video', 'AI Image to Video', 'tabler-video', NULL, 33, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(8, NULL, 'ai_image_generator', 'dashboard.user.openai.generator', 'ai_image_generator', 'AI Image Creator', 'tabler-photo', NULL, 25, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(9, NULL, 'ai_article_wizard', 'dashboard.user.openai.articlewizard.new', 'ai_article_wizard', 'AI Article Wizard', 'tabler-ad-2', NULL, 19, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(10, NULL, 'ai_pdf', 'dashboard.user.openai.generator.workbook', 'ai_pdf', 'AI File Chat', 'tabler-file-pencil', NULL, 10, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(11, NULL, 'ai_vision', 'dashboard.user.openai.generator.workbook', 'ai_vision', 'AI Vision Chat', 'tabler-scan-eye', NULL, 8, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(12, NULL, 'ai_rewriter', 'dashboard.user.openai.rewriter', 'ai_rewriter', 'AI ReWrite', 'tabler-ballpen', NULL, 20, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(13, NULL, 'ai_chat_image', 'dashboard.user.openai.generator.workbook', 'ai_chat_image', 'AI Image Chat', 'tabler-photo', NULL, 9, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(14, NULL, 'ai_chat_all', 'dashboard.user.openai.chat.chat', NULL, 'AI Text Chat', 'tabler-message-dots', NULL, 7, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(15, NULL, 'ai_code_generator', 'dashboard.user.openai.generator.workbook', 'ai_code_generator', 'AI Code Write', 'tabler-terminal-2', NULL, 21, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(16, NULL, 'ai_youtube', 'dashboard.user.openai.generator.workbook', 'ai_youtube', 'AI YouTube', 'tabler-brand-youtube', NULL, 39, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(17, NULL, 'ai_rss', 'dashboard.user.openai.generator.workbook', 'ai_rss', 'AI RSS', 'tabler-rss', NULL, 42, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(18, NULL, 'ai_speech_to_text', 'dashboard.user.openai.generator', 'ai_speech_to_text', 'AI Speech to Text', 'tabler-microphone', NULL, 46, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(19, NULL, 'ai_voiceover', 'dashboard.user.openai.generator', 'ai_voiceover', 'AI Voiceover', 'tabler-volume', NULL, 45, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(20, NULL, 'ai_voice_isolator', 'dashboard.user.openai.generator', 'ai_voice_isolator', 'AI Voice Isolator', 'tabler-ear-scan', NULL, 48, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(21, NULL, 'ai_voiceover_clone', 'dashboard.user.voice.index', NULL, 'AI Voice Clone', 'tabler-microphone-2', NULL, 47, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(22, NULL, 'team_menu', 'dashboard.user.team.index', NULL, 'Team', 'tabler-user-plus', NULL, 56, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(23, NULL, 'brand_voice', 'dashboard.user.brand.index', NULL, 'Brand Voice', 'tabler-brand-trello', NULL, 57, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(24, NULL, 'advanced_image', 'dashboard.user.advanced-image.index', NULL, 'Advanced Image Editor', 'tabler-photo-edit', NULL, 29, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(25, NULL, 'ai_avatar', 'dashboard.user.ai-avatar.index', NULL, 'AI Avatar', 'tabler-slideshow', NULL, 35, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(28, NULL, 'ai_product_shot', 'dashboard.user.ai-product-shot.index', NULL, 'AI Product Photo Pro', 'tabler-photo-star', NULL, 27, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(29, NULL, 'api_keys', 'dashboard.user.apikeys.index', NULL, 'API Keys', 'tabler-key', NULL, 56, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2024-12-31 06:30:40', 0),
(30, NULL, 'affiliates', 'dashboard.user.affiliates.index', NULL, 'Affiliates', 'tabler-currency-dollar', NULL, 69, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(31, NULL, 'support', 'dashboard.support.list', NULL, 'Support', 'tabler-lifebuoy', NULL, 68, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(32, NULL, 'integration', 'dashboard.user.integration.index', NULL, 'WordPress', 'tabler-webhook', NULL, 52, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(33, NULL, 'divider_one', NULL, NULL, NULL, NULL, NULL, 54, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(34, NULL, 'links', NULL, NULL, 'Favorites', NULL, NULL, 64, 1, '[]', 'label', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(35, NULL, 'favorites', 'dashboard.user.openai.list', 'filter=favorite', 'Writers', NULL, NULL, 66, 1, '[]', 'item', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(36, NULL, 'workbook', 'dashboard.user.openai.documents.all', '?filter=favorites', 'Documents', NULL, NULL, 65, 1, '[]', 'item', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(37, NULL, 'divider_two', NULL, NULL, NULL, NULL, NULL, 63, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(38, NULL, 'admin_label', NULL, NULL, 'Admin', NULL, NULL, 71, 1, '[]', 'label', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(39, NULL, 'admin_dashboard', 'dashboard.admin.index', NULL, 'Admin Dashboard', 'tabler-layout-2', NULL, 72, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(40, NULL, 'marketplace', 'dashboard.admin.marketplace.index', NULL, 'Marketplace', 'tabler-building-store', NULL, 74, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(41, NULL, 'themes', 'dashboard.admin.themes.index', NULL, 'Themes', 'tabler-palette', NULL, 75, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(42, NULL, 'user_management', 'dashboard.admin.users.index', NULL, 'User Management', 'tabler-users', NULL, 85, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(43, 42, 'user_list', 'dashboard.admin.users.index', NULL, 'Users List', 'tabler-user-search', NULL, 2, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(44, 42, 'user_activity', 'dashboard.admin.users.activity', NULL, 'Users Activities', 'tabler-world', NULL, 3, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(45, 42, 'user_dashboard', 'dashboard.admin.users.dashboard', NULL, 'Users Dashboard', 'tabler-user-circle', NULL, 1, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(46, 42, 'user_deletion', 'dashboard.admin.users.deletion.reqs', NULL, 'User Deletion Requests', 'tabler-user-x', NULL, 5, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(47, 42, 'user_permission', 'dashboard.admin.users.permissions', NULL, 'User Permissions', 'tabler-user-check', NULL, 4, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(48, 42, 'announcements', 'dashboard.admin.announcements.index', NULL, 'Announcements', 'tabler-speakerphone', NULL, 0, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(50, NULL, 'support_requests', 'dashboard.support.list', NULL, 'Support Requests', 'tabler-lifebuoy', NULL, 73, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(51, NULL, 'templates', 'dashboard.admin.openai.list', NULL, 'Templates', 'tabler-list-details', NULL, 79, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(52, 51, 'built_in_templates', 'dashboard.admin.openai.list', NULL, 'Built-in Templates', NULL, NULL, 0, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(53, 51, 'custom_templates', 'dashboard.admin.openai.custom.list', NULL, 'Custom Templates', NULL, NULL, 1, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(54, 51, 'ai_writer_categories', 'dashboard.admin.openai.categories.list', NULL, 'AI Writer Categories', NULL, NULL, 2, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(55, NULL, 'chat_settings', 'dashboard.admin.openai.chat.category', NULL, 'Chat Settings', 'tabler-message-circle', NULL, 78, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(56, 55, 'chat_categories', 'dashboard.admin.openai.chat.category', NULL, 'Chat Categories', NULL, NULL, 0, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(57, 55, 'chat_templates', 'dashboard.admin.openai.chat.list', NULL, 'Chat Templates', NULL, NULL, 1, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(58, 55, 'chatbot_training', 'dashboard.admin.chatbot.index', NULL, 'Chatbot Training', NULL, NULL, 2, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(59, 55, 'ai_assistant', 'dashboard.admin.ai-assistant.index', NULL, 'Assistant Training', NULL, NULL, 3, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(60, 108, 'ai_chat_models', 'dashboard.admin.ai-chat-model.index', NULL, 'AI Models', 'tabler-box-model', NULL, 3, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(61, NULL, 'floating_chat_settings', 'dashboard.admin.chatbot.setting', NULL, 'Floating Chat Settings', 'tabler-brand-hipchat', NULL, 77, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(62, NULL, 'external_chat_settings', 'dashboard.admin.chatbot.external_settings', NULL, 'External Chat Settings', NULL, NULL, 79, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-04-20 02:07:43', 0),
(63, NULL, 'frontend', 'dashboard.admin.frontend.settings', NULL, 'Frontend', 'tabler-list-details', NULL, 80, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(64, 63, 'frontend_settings', 'dashboard.admin.frontend.settings', NULL, 'Frontend Settings', 'tabler-list-check', NULL, 3, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(65, 63, 'frontend_section_settings', 'dashboard.admin.frontend.sectionsettings', NULL, 'Frontend Sections Settings', 'tabler-section', NULL, 10, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(66, 63, 'frontend_menu', 'dashboard.admin.frontend.menusettings', NULL, 'Menu', 'tabler-menu-2', NULL, 5, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(67, 63, 'social_media_accounts', 'dashboard.admin.frontend.socialmedia', NULL, 'Social Media Section', NULL, NULL, 18, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(68, 63, 'auth_settings', 'dashboard.admin.frontend.authsettings', NULL, 'Auth Settings', 'tabler-user-check', NULL, 1, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(69, 63, 'f_a_q', 'dashboard.admin.frontend.faq.index', NULL, 'F.A.Q', 'tabler-database', NULL, 7, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(70, 63, 'tools_section', 'dashboard.admin.frontend.tools.index', NULL, 'Tools Section', NULL, NULL, 14, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(71, 63, 'features_section', 'dashboard.admin.frontend.future.index', NULL, 'Features Section', NULL, NULL, 11, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(72, 63, 'testimonials_section', 'dashboard.admin.testimonials.index', NULL, 'Testimonials Section', NULL, NULL, 17, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(73, 63, 'clients_section', 'dashboard.admin.clients.index', NULL, 'Clients Section', NULL, NULL, 13, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(74, 63, 'how_it_works_section', 'dashboard.admin.howitWorks.index', NULL, 'How it Works Section', NULL, NULL, 12, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(75, 63, 'who_can_use_section', 'dashboard.admin.frontend.whois.index', NULL, 'Who Can Use Section', NULL, NULL, 16, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(76, 63, 'generators_list_section', 'dashboard.admin.frontend.generatorlist.index', NULL, 'Generators List Section', NULL, NULL, 15, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(77, NULL, 'finance', 'dashboard.admin.finance.plans.index', NULL, 'Finance', 'tabler-wallet', NULL, 86, 1, '[]', 'item', '0', 1, '#3569F5', '#fff', 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(78, 77, 'bank_transactions', 'dashboard.admin.bank.transactions.list', NULL, 'Bank Transactions', 'tabler-building-bank', NULL, 3, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(79, NULL, 'membership_plans', 'dashboard.admin.finance.plans.index', NULL, 'Membership Plans (old version)', 'tabler-crown', NULL, 78, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 10:49:40', 0),
(80, 77, 'admin_finance_plan', 'dashboard.admin.finance.plan.index', NULL, 'Pricing Plans', 'tabler-crown', NULL, 0, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(81, 77, 'payment_gateways', 'dashboard.admin.finance.paymentGateways.index', NULL, 'Payment Gateways', 'tabler-brand-paypal', NULL, 2, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(82, 77, 'trial_features', 'dashboard.admin.finance.free.feature', NULL, 'Trial Features', 'tabler-gift', NULL, 1, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(84, 77, 'mobile_payment', 'dashboard.admin.finance.mobile.index', NULL, 'Mobile Payment', 'tabler-device-mobile', NULL, 4, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(85, 63, 'pages', 'dashboard.page.list', NULL, 'Custom Pages', 'tabler-file-description', NULL, 9, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(86, 63, 'blog', 'dashboard.blog.list', NULL, 'Blog', 'tabler-pencil', NULL, 8, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(87, 77, 'affiliates_admin', 'dashboard.admin.affiliates.index', NULL, 'Affiliates', 'tabler-currency-dollar', NULL, 5, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(88, 77, 'coupons_admin', 'dashboard.admin.coupons.index', NULL, 'Coupons', 'tabler-ticket', NULL, 6, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(89, NULL, 'email_templates', 'dashboard.email-templates.index', NULL, 'Email Templates', 'tabler-mail', NULL, 83, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(91, NULL, 'mailchimp_newsletter', 'dashboard.admin.mailchimp-newsletter.index', NULL, 'Mailchimp', 'tabler-mailbox', NULL, 82, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(92, NULL, 'hubspot', 'dashboard.admin.hubspot.index', NULL, 'Hubspot', 'tabler-affiliate', NULL, 81, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(93, NULL, 'api_integration', 'default', NULL, 'API Integration', 'tabler-api', NULL, 89, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(94, 93, 'api_integration_openai', 'dashboard.admin.settings.openai', NULL, 'OpenAI', NULL, NULL, 6, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(95, 93, 'api_integration_gemini', 'dashboard.admin.settings.gemini', NULL, 'Gemini', NULL, NULL, 7, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(96, 93, 'api_integration_anthropic', 'dashboard.admin.settings.anthropic', NULL, 'Anthropic', NULL, NULL, 4, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(97, 93, 'api_integration_fal_ai', 'dashboard.admin.settings.fal-ai', NULL, 'Fal AI', NULL, NULL, 14, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(98, 93, 'api_integration_stablediffusion', 'dashboard.admin.settings.stablediffusion', NULL, 'StableDiffusion', NULL, NULL, 11, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(99, 93, 'api_integration_unsplashapi', 'dashboard.admin.settings.unsplashapi', NULL, 'Unsplash', NULL, NULL, 19, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(100, 93, 'api_integration_pexelsapi', 'dashboard.admin.settings.pexelsapi', NULL, 'Pexels', NULL, NULL, 13, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(101, 93, 'api_integration_pixabayapi', 'dashboard.admin.settings.pixabayapi', NULL, 'Pixabay', NULL, NULL, 20, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(102, 93, 'api_integration_serperapi', 'dashboard.admin.settings.serperapi', NULL, 'Serper', NULL, NULL, 1, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(103, 93, 'api_integration_tts', 'dashboard.admin.settings.tts', NULL, 'TTS', NULL, NULL, 17, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(104, 93, 'api_integration_synthesia', 'dashboard.admin.settings.synthesia', NULL, 'Synthesia', NULL, NULL, 15, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(105, 93, 'api_integration_heygen', 'dashboard.admin.settings.heygen', NULL, 'Heygen', NULL, NULL, 16, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(106, 93, 'api_integration_pebblely', 'dashboard.admin.settings.pebblely', NULL, 'Pebblely', NULL, NULL, 12, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(107, 93, 'plagiarism_extension', 'dashboard.admin.settings.plagiarism', NULL, 'Plagiarism API', NULL, NULL, 3, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(108, NULL, 'settings', 'dashboard.admin.settings.general', NULL, 'Settings', 'tabler-device-laptop', NULL, 88, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(109, 108, 'config', 'dashboard.admin.config.index', NULL, 'General Settings', 'tabler-adjustments', NULL, 1, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(110, 108, 'thumbnail_system', 'dashboard.admin.settings.thumbnail', NULL, 'Thumbnail System', 'tabler-refresh-dot', NULL, 5, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(111, 63, 'privacy', 'dashboard.admin.settings.privacy', NULL, 'Privacy and Terms Settings', 'tabler-fingerprint', NULL, 4, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(112, 108, 'site_health', 'dashboard.admin.health.index', NULL, 'Site Health', 'tabler-report-medical', NULL, 6, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(113, 108, 'license', 'dashboard.admin.license.index', NULL, 'License', 'tabler-checklist', NULL, 7, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(114, 108, 'update', 'dashboard.admin.update.index', NULL, 'Update', 'tabler-refresh', NULL, 4, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(115, 108, 'menu_setting', 'dashboard.admin.menu.index', NULL, 'Menu', 'tabler-menu-2', NULL, 0, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(116, NULL, 'openai_generator_extension', 'default', NULL, 'AI Templates', 'tabler-list-details', NULL, 5, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2024-12-31 06:30:40', 0),
(117, 116, 'custom_templates_extension', 'dashboard.user.ai-template.openai-generator.index', NULL, 'Custom Templates', NULL, NULL, 5, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2024-12-31 06:30:40', 0),
(118, 116, 'ai_writer_categories_extension', 'dashboard.user.ai-template.openai-generator-filter.index', NULL, 'AI Writer Categories', NULL, NULL, 5, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2024-12-31 06:30:40', 0),
(119, NULL, 'ai_plagiarism_extension', 'dashboard.user.openai.plagiarism.index', NULL, 'AI Plagiarism', 'tabler-progress-check', NULL, 60, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(120, NULL, 'ai_detector_extension', 'dashboard.user.openai.detectaicontent.index', NULL, 'AI Detector', 'tabler-text-scan-2', NULL, 61, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(121, NULL, 'ai_social_media_extension', 'dashboard.user.automation.index', NULL, 'AI Social Media', 'tabler-share', NULL, 40, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(122, NULL, 'scheduled_posts_extension', 'dashboard.user.automation.list', NULL, 'Scheduled Posts', 'tabler-report', NULL, 41, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(123, NULL, 'ai_social_media_settings_extension', 'dashboard.admin.automation.settings', NULL, 'AI Social Media', 'tabler-brand-facebook', NULL, 87, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(124, NULL, 'chat_settings_extension', 'default', NULL, 'Custom Settings', 'tabler-message-circle', NULL, 12, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(125, 124, 'chat_categories_extension', 'dashboard.user.chat-setting.chat-category.index', NULL, 'Chat Categories', NULL, NULL, 0, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(126, 124, 'chat_template_extension', 'dashboard.user.chat-setting.chat-template.index', NULL, 'Chat Templates', NULL, NULL, 1, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(127, 124, 'chat_training_extension', 'dashboard.user.chat-setting.chatbot.index', NULL, 'Chatbot Training', NULL, NULL, 2, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(128, 108, 'cloudflare_r2_extension', 'dashboard.admin.settings.cloudflare-r2', NULL, 'Cloudflare', 'tabler-cloud-lock', NULL, 2, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(129, NULL, 'photo_studio_extension', 'dashboard.user.photo-studio.index', NULL, 'AI Photo Studio', 'tabler-device-laptop', NULL, 26, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(130, NULL, 'seo_tool_extension', 'dashboard.user.seo.index', NULL, 'SEO Tool', 'tabler-seo', NULL, 62, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(131, NULL, 'ai_web_chat_extension', 'dashboard.user.openai.webchat.workbook', NULL, 'AI Website Chat', 'tabler-world-www', NULL, 11, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(133, 63, 'maintenance_setting', 'dashboard.admin.settings.maintenance.index', NULL, 'Site Maintenance', 'tabler-traffic-cone', NULL, 2, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(134, NULL, 'ai_video_pro', 'dashboard.user.ai-video-pro.index', NULL, 'AI Video Pro', 'tabler-video', NULL, 32, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 0),
(135, 63, 'site_promo', 'dashboard.admin.ads.index', NULL, 'Google AdSense', 'tabler-ad-circle', NULL, 0, 1, '[]', 'item', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(136, 93, 'api_integration_searchapi', 'dashboard.admin.settings.searchapi', NULL, 'Search Api', NULL, NULL, 0, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:35', 0),
(137, NULL, 'chat_label', NULL, NULL, 'AI Chatbot', NULL, NULL, 5, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(138, NULL, 'content_label', NULL, NULL, 'AI Writing', NULL, NULL, 17, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(139, NULL, 'image_label', NULL, NULL, 'AI Image', NULL, NULL, 23, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(140, NULL, 'video_label', NULL, NULL, 'AI Video', NULL, NULL, 31, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(141, NULL, 'socialmedia_label', NULL, NULL, 'AI Social Media', NULL, NULL, 38, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(142, NULL, 'audio_label', NULL, NULL, 'AI Sound', NULL, NULL, 44, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(143, NULL, 'productivity_label', NULL, NULL, 'AI Productivity', NULL, NULL, 59, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(144, NULL, 'other_label', NULL, NULL, 'Intergrations', NULL, NULL, 51, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(145, NULL, 'divider_three', NULL, NULL, NULL, NULL, NULL, 4, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(146, NULL, 'divider_four', NULL, NULL, NULL, NULL, NULL, 13, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(147, NULL, 'divider_five', NULL, NULL, NULL, NULL, NULL, 22, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(148, NULL, 'divider_six', NULL, NULL, NULL, NULL, NULL, 30, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(149, NULL, 'divider_seven', NULL, NULL, NULL, NULL, NULL, 37, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(150, NULL, 'divider_eight', NULL, NULL, NULL, NULL, NULL, 43, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(151, NULL, 'divider_nine', NULL, NULL, NULL, NULL, NULL, 50, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(152, NULL, 'divider_ten', NULL, NULL, NULL, NULL, NULL, 67, 1, '[]', 'divider', '0', 0, NULL, NULL, 0, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(153, NULL, 'business_label', NULL, NULL, 'Business Essentials', NULL, NULL, 55, 1, '[]', 'label', '0', 0, NULL, NULL, 1, NULL, '2024-12-31 06:30:40', '2025-05-09 18:15:34', 1),
(155, NULL, 'divider', NULL, NULL, 'divider', NULL, NULL, 16, 1, NULL, 'divider', '0', 0, NULL, NULL, 0, NULL, '2025-01-06 22:53:39', '2025-05-09 18:15:34', 1),
(156, NULL, 'ai-documents', NULL, NULL, 'Workbook', NULL, NULL, 14, 1, NULL, 'label', '0', 0, NULL, NULL, 1, NULL, '2025-01-06 22:54:31', '2025-05-09 18:15:34', 1),
(158, NULL, 'ai_persona', 'dashboard.user.ai-persona.index', NULL, 'AI Avatar Pro', 'tabler-camera-star', NULL, 36, 1, '[]', 'item', '1', 0, NULL, NULL, 0, NULL, '2025-01-07 18:26:08', '2025-05-09 18:15:34', 0),
(162, NULL, 'onboarding', 'dashboard.admin.onboarding.index', NULL, 'Onboarding', 'tabler-directions', NULL, 72, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-01-21 16:08:38', '2025-01-21 16:08:38', 1),
(163, 93, 'api_integration_deepseek', 'dashboard.admin.settings.deepseek', NULL, 'Deepseek', NULL, NULL, 5, 1, '[]', 'item', '0', 0, NULL, NULL, NULL, NULL, '2025-01-21 16:08:38', '2025-05-09 18:15:35', 0),
(164, 93, 'api_integration_perplexity', 'dashboard.admin.settings.perplexity', NULL, 'Perplexity', NULL, NULL, 2, 1, '[]', 'item', '0', 0, NULL, NULL, NULL, NULL, '2025-01-21 16:08:38', '2025-05-09 18:15:35', 0),
(165, 93, 'clipdrop_extension', 'dashboard.admin.settings.clipdrop', NULL, 'Clipdrop', NULL, NULL, 18, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-01-21 16:08:38', '2025-05-09 18:15:35', 0),
(166, NULL, 'divider5064', NULL, NULL, 'divider', NULL, NULL, 58, 1, NULL, 'divider', NULL, 0, NULL, NULL, 0, NULL, '2025-01-22 14:29:06', '2025-05-09 18:15:34', 1),
(168, NULL, 'divider2414', NULL, NULL, 'divider', NULL, NULL, 70, 1, NULL, 'divider', NULL, 0, NULL, NULL, 0, NULL, '2025-01-26 03:16:56', '2025-05-09 18:15:34', 1),
(172, NULL, 'ai_realtime_voice_chat', 'dashboard.user.openai.chat.chat', 'ai_realtime_voice_chat', 'AI Voice Chat', 'tabler-wave-sine', NULL, 6, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-01-27 20:30:26', '2025-05-09 18:15:34', 0),
(173, NULL, 'onboarding_pro_extension', 'dashboard.admin.onboarding-pro.index', NULL, 'Onboarding Pro', 'tabler-message-circle', NULL, 73, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-01-27 20:30:27', '2025-01-27 20:30:27', 0),
(174, NULL, 'checkout_registration_extension', 'dashboard.admin.checkout.registration.settings.index', NULL, 'Checkout and Register', 'tabler-shopping-cart', NULL, 84, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-01-27 20:30:27', '2025-05-09 18:15:34', 0),
(175, 93, 'api_integration_openrouter', 'dashboard.admin.settings.open-router.show', NULL, 'Open Router', NULL, NULL, 25, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-02-24 11:07:07', '2025-05-09 18:15:35', 0),
(176, NULL, 'ai_video_to_video', 'dashboard.user.openai.generator', 'ai_video_to_video', 'AI Video To Video', 'tabler-video', NULL, 34, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-02-24 11:07:07', '2025-05-09 18:15:34', 0),
(177, NULL, 'ai_music', 'dashboard.user.ai-music.index', NULL, 'AI Music', 'tabler-slideshow', NULL, 49, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-02-24 11:07:07', '2025-05-09 18:15:34', 0),
(181, 93, 'api_integration_aimlapi', 'dashboard.admin.settings.aimlapi', NULL, 'Aimlapi', NULL, NULL, 23, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-02-24 11:07:07', '2025-05-09 18:15:35', 0),
(182, 93, 'xero_extension', 'dashboard.admin.settings.xero', NULL, 'Xero API', NULL, NULL, 27, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-02-24 11:07:07', '2025-05-09 18:15:35', 0),
(183, 93, 'api_integration_piapi_ai', 'dashboard.admin.settings.piapi-ai', NULL, 'PiAPI', NULL, NULL, 24, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-02-24 11:07:07', '2025-05-09 18:15:35', 0),
(184, NULL, 'ext_chat_bot_agent', 'dashboard.chatbot-agent.index', NULL, 'Human Agent', 'tabler-message', NULL, 60, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-05-09 10:49:40', 0),
(185, NULL, 'ext_social_media_dropdown', 'dashboard.user.social-media.index', NULL, 'Social Media', 'tabler-share', NULL, 82, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-03-10 10:53:32', 0),
(186, 185, 'ext_social_media', 'dashboard.user.social-media.index', NULL, 'Dashboard', NULL, NULL, 1, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-03-10 10:53:32', 0),
(187, 185, 'ext_social_media_campaign', 'dashboard.user.social-media.campaign.index', NULL, 'Campaigns', NULL, NULL, 3, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-03-10 10:53:32', 0),
(188, 185, 'ext_social_media_platform', 'dashboard.user.social-media.platforms', NULL, 'Platforms', NULL, NULL, 3, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-03-10 10:53:32', 0),
(189, 185, 'ext_social_media_post', 'dashboard.user.social-media.post.index', NULL, 'Scheduled Posts', NULL, NULL, 3, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-03-10 10:53:32', 0),
(190, NULL, 'social_media_settings_extension', 'dashboard.admin.social-media.setting.index', NULL, 'Social Media Pro Settings', 'tabler-brand-twitter', NULL, 80, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-05-09 18:14:04', 0),
(191, 93, 'x_ai', 'dashboard.admin.settings.x-ai', NULL, 'X AI', NULL, NULL, 10, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-03-10 10:53:32', '2025-05-09 18:15:35', 0),
(192, 63, 'channels_section', 'dashboard.admin.frontend.channel-setting.index', NULL, 'Channels Section', NULL, NULL, 19, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:47', '2025-05-09 18:15:35', 0),
(193, 63, 'content_box', 'dashboard.admin.frontend.content-box.index', NULL, 'Content Box Section', NULL, NULL, 20, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:47', '2025-05-09 18:15:35', 0),
(194, 63, 'curtain_section', 'dashboard.admin.frontend.curtain.index', NULL, 'Curtain Section', NULL, NULL, 21, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:47', '2025-05-09 18:15:35', 0),
(195, 93, 'api_integration_ably', 'dashboard.admin.settings.ably', NULL, 'Ably Setting', NULL, NULL, 28, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:47', '2025-05-09 18:15:35', 0),
(196, 93, 'api_integration_llama', 'dashboard.admin.settings.llama', NULL, 'Llama', NULL, NULL, 9, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:47', '2025-05-09 18:15:35', 0),
(197, 63, 'mega_menu_setting', 'dashboard.admin.mega-menu.index', NULL, 'Mega Menu', 'tabler-menu-2', NULL, 6, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:48', '2025-05-09 18:15:35', 0),
(198, 93, 'novita_extension', 'dashboard.admin.settings.novita', NULL, 'Novita', NULL, NULL, 22, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:48', '2025-05-09 18:15:35', 0),
(199, 93, 'freepik_extension', 'dashboard.admin.settings.freepik', NULL, 'Freepik', NULL, NULL, 21, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-04-04 12:25:48', '2025-05-09 18:15:35', 0),
(200, 185, 'ext_social_media_calendar', 'dashboard.user.social-media.calendar', NULL, 'Calendar', NULL, NULL, 3, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-04-10 13:36:41', '2025-04-10 13:36:41', 0),
(203, NULL, 'ai_chat_pro', 'dashboard.user.openai.chat.pro.index', NULL, 'AI Chat Pro', 'tabler-message-plus', NULL, 20, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-04-20 01:53:51', '2025-04-20 01:53:51', 0),
(204, NULL, 'ai_chat_pro_settings_extension', 'dashboard.admin.openai.chat.pro.settings', NULL, 'AI Chat Pro Settings', NULL, NULL, 76, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-04-20 01:53:51', '2025-05-09 18:15:34', 0),
(205, NULL, 'divider6926', NULL, NULL, 'divider', NULL, NULL, 28, 1, NULL, 'divider', NULL, 0, NULL, NULL, 0, NULL, '2025-04-20 02:05:31', '2025-05-09 18:15:34', 1),
(206, NULL, 'ext_voice_chatbot', 'dashboard.chatbot-voice.index', NULL, 'AI Voice Bots', 'tabler-message-chatbot', NULL, 4, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-05-09 10:49:39', '2025-05-09 10:49:39', 0),
(207, NULL, 'ai_realtime_image', 'dashboard.user.ai-realtime-image.index', 'ai_realtime_image', 'AI Realtime Image', 'tabler-image-in-picture', NULL, 24, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-05-09 10:49:39', '2025-05-09 18:15:34', 0),
(208, 93, 'api_integration_azure_openai', 'dashboard.admin.settings.azure-openai.index', NULL, 'Azure OpenAI', NULL, NULL, 8, 1, '[]', 'item', NULL, 0, NULL, NULL, NULL, NULL, '2025-05-09 10:49:39', '2025-05-09 18:15:35', 0),
(209, 93, 'api_integration_together', 'dashboard.admin.settings.together', NULL, 'Together', NULL, NULL, 26, 1, '[]', 'item', '1', 0, NULL, NULL, NULL, NULL, '2025-05-09 10:49:39', '2025-05-09 18:15:35', 0);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;