Back to Start Page
Here are the steps to take:
<?php
...
public function boot()
{
// Extend the backend side navigation for a plugin
Event::listen('backend.menu.extendItems', function($manager) {
// Pds.Library stands for author.pluginname
// Library is the main entry for this plugin shown at the top menu
$manager->addSideMenuItems('Pds.Library', 'Library', [
'books' => [
'label' => 'Books',
'icon' => 'icon-book',
'code' => 'side-menu-books',
'owner' => 'Pds.Library',
'url' => Backend::url('Pds/Library/Books'),
],
]);
});
}