index-main/site/config/menu.php

15 lines
282 B
PHP
Raw Normal View History

2025-11-04 09:05:55 +01:00
<?php
return [
'home' => [
'label' => 'Dashboard',
'icon' => 'bolt',
'link' => '/',
'current' => function (string $current): bool {
$path = Kirby\Cms\App::instance()->path();
return Str::contains($path, '/site');
}
2025-11-04 09:05:55 +01:00
],
2025-11-04 10:07:50 +01:00
'-',
'users'
2025-11-04 09:05:55 +01:00
];