How to make child theme in wordpress with wp_enqueue_style ? Using Enough Theme

It is very best described in the WordPress Child theme codex page.

Basically to load child theme and parent theme stylesheet files, you have to just add following code in the functions.php file of your child theme.

function my_theme_enqueue_styles() {

    $parent_style="parent-style";

    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'styles',
    get_stylesheet_directory_uri() . '/style.css',
    array( $parent_style, 'enough_base' ),
    wp_get_theme()->get('Version')
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles', 99 );

You don’t need to enqueue other parent theme CSS files if you are not changing them.