[ 'pattern' => 'lab/docs/(:any)', 'load' => function (string $component) { if (Docs::isInstalled() === false) { return [ 'component' => 'k-text-drawer', 'props' => [ 'text' => 'The UI docs are not installed.' ] ]; } $doc = Doc::factory($component); return [ 'component' => 'k-lab-docs-drawer', 'props' => [ 'icon' => 'book', 'title' => $component, 'docs' => $doc->toArray() ] ]; }, ], ];