diff --git a/config/menus/station.php b/config/menus/station.php index 333c8fea8..0bba24b9b 100644 --- a/config/menus/station.php +++ b/config/menus/station.php @@ -53,7 +53,23 @@ return static function (App\Event\BuildStationMenu $e) { 'profile' => [ 'label' => __('Profile'), 'icon' => 'image', - 'url' => $router->fromHere('stations:profile:index'), + 'items' => [ + [ + 'label' => __('View Profile'), + 'url' => $router->fromHere('stations:profile:index'), + ], + [ + 'label' => __('Edit Profile'), + 'url' => $router->fromHere('stations:profile:edit'), + 'permission' => StationPermissions::Profile, + ], + [ + 'label' => __('Branding'), + 'class' => 'text-muted', + 'url' => $router->fromhere('stations:branding'), + 'permission' => StationPermissions::Profile, + ], + ], ], 'public' => [ 'label' => __('Public Page'),