panel : create database with fields
All checks were successful
Deploy / Deploy to Production (push) Successful in 14s

This commit is contained in:
isUnknown 2026-02-10 16:13:01 +01:00
parent c248687d56
commit ff215de723
8 changed files with 59 additions and 7 deletions

View file

@ -10,6 +10,17 @@ return [
return Str::contains($path, '/site');
}
],
'-'
,
'database' => [
'label' => 'Bases de données',
'icon' => 'table',
'link' => 'pages/database',
'current' => function (string $current): bool {
$path = Kirby\Cms\App::instance()->path();
return Str::contains($path, 'pages/database');
}
],
'-',
'users'
];