How to Hide Push Notifications by LaraPush Admin Menus

function plt_hide_push_notifications_by_larapush_menus() {
	//Hide the "LaraPush" menu.
	remove_menu_page('unlimited-push-notifications-by-larapush');
	//Hide the "LaraPush → Larapush Panel" menu.
	remove_submenu_page('unlimited-push-notifications-by-larapush', 'unlimited-push-notifications-by-larapush');
	//Hide the "LaraPush → Settings" menu.
	remove_submenu_page('unlimited-push-notifications-by-larapush', 'unlimited-push-notifications-by-larapush-settings');
}

add_action('admin_menu', 'plt_hide_push_notifications_by_larapush_menus', 11);

Where do I put this code?