How to show a list of only categories (exclude subcategories)

$args = array(
  'orderby' => 'name',
  'order' => 'ASC',
  'parent' => 0
);
$categories = get_categories($args);

May this will help you. Refer this link