Remove Welcome Panel from Dashboard

Remove the WordPress Dashboard Welcome Panel for all users.

// NAV: Remove Welcome Panel from Dashboard 
add_action(
'admin_init',
function () {
remove_action( 'welcome_panel', 'wp_welcome_panel' );
}
);