AssetBundle for https://cameronspear.com/demos/bootstrap-hover-dropdown/
####Composer
composer require --prefer-dist "tecnocen/yii2-bootstrap-hover-dropdown:*"
or add
"tecnocen/yii2-bootstrap-hover-dropdown": "dev-master"
to the require
section of your composer.json
file.
in view (for example: @app/views/layouts/main.php
)
// ...
use tecnocen\hoverdropdown\HoverDropdownAssetBundle;
// ...
HoverDropdownAssetBundle::register($this);
or add to your assets/AppAsset.php
public $depends = [
// ...
'\tecnocen\hoverdropdown\HoverDropdownAssetBundle',
];