We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 391bf0f commit ba381b5Copy full SHA for ba381b5
2 files changed
config/eclipse.php
@@ -133,6 +133,7 @@
133
*/
134
'tools' => [
135
'phpmyadmin' => env('PHPMYADMIN_URL'),
136
+ 'typesense_dashboard' => env('TYPESENSE_DASHBOARD_URL'),
137
],
138
139
];
src/Providers/AdminPanelProvider.php
@@ -207,6 +207,16 @@ public function panel(Panel $panel): Panel
207
]);
208
}
209
210
+ if (config('eclipse.tools.typesense_dashboard')) {
211
+ $panel->navigationItems([
212
+ NavigationItem::make('Typesense Dashboard')
213
+ ->url(config('eclipse.tools.typesense_dashboard'), shouldOpenInNewTab: true)
214
+ ->icon('heroicon-s-arrow-top-right-on-square')
215
+ ->group('Tools')
216
+ ->sort(910),
217
+ ]);
218
+ }
219
+
220
// Configure notifications
221
Notifications::alignment(Alignment::Center);
222
Notifications::verticalAlignment(VerticalAlignment::End);
0 commit comments