afatmustafa
afatmustafa
Explore posts from servers
TCTwill CMS
Created by afatmustafa on 7/28/2023 in #👊support
Disabling automaticNavigation from Capsules
I solved the problem by overriding the registerCapsule() function in TwillPackageServiceProvider which extends in SomeCapsuleServiceProvider.
class SomeCapsuleServiceProvider extends TwillPackageServiceProvider
{
protected function registerCapsule(string $name): void
{
$namespace = $this->getCapsuleNamespace();

$namespace .= '\\Twill\\Capsules\\' . $name;

$dir = $this->getPackageDirectory() . DIRECTORY_SEPARATOR .
'src' . DIRECTORY_SEPARATOR .
'Twill' . DIRECTORY_SEPARATOR .
'Capsules' . DIRECTORY_SEPARATOR . $name;

\A17\Twill\Facades\TwillCapsules::registerPackageCapsule($name, $namespace, $dir, automaticNavigation: false);
}
}`
class SomeCapsuleServiceProvider extends TwillPackageServiceProvider
{
protected function registerCapsule(string $name): void
{
$namespace = $this->getCapsuleNamespace();

$namespace .= '\\Twill\\Capsules\\' . $name;

$dir = $this->getPackageDirectory() . DIRECTORY_SEPARATOR .
'src' . DIRECTORY_SEPARATOR .
'Twill' . DIRECTORY_SEPARATOR .
'Capsules' . DIRECTORY_SEPARATOR . $name;

\A17\Twill\Facades\TwillCapsules::registerPackageCapsule($name, $namespace, $dir, automaticNavigation: false);
}
}`
4 replies
TCTwill CMS
Created by afatmustafa on 7/28/2023 in #👊support
Disabling automaticNavigation from Capsules
Or being able to change the title would work too.
4 replies