diff --git a/app/helpers.php b/app/helpers.php index 3c7b3546..9f82160f 100644 --- a/app/helpers.php +++ b/app/helpers.php @@ -185,7 +185,7 @@ if (! function_exists('bs_menu')) { $availablePluginConfigs[] = [ 'title' => trans($plugin->title), 'link' => 'admin/plugins/config/'.$plugin->name, - 'icon' => 'fa-circle-o' + 'icon' => 'fa-circle' ]; } } @@ -233,8 +233,9 @@ if (! function_exists('bs_menu')) { } else { if ($value) { $content .= sprintf( - '  %s', + '  %s', url((string) $value['link']), + $value['icon'] == 'fa-circle' ? 'far' : 'fas', (string) $value['icon'], trans((string) $value['title']) );