Add acf field in title (admin table)

Use this to filter the title:

add_action(
    'admin_head-edit.php',
    'wpse264139_edit_post_change_title_in_list'
);
function wpse264139_edit_post_change_title_in_list() {
    add_filter(
        'the_title',
        'wpse264139_construct_new_title',
        100,
        2
    );
}`

`function wpse264139_construct_new_title( $title, $id ) {
    if(get_post_type($id) == 'post_type') {
       $field = get_field('place', $id);
       return $field . " " . $title;
    }
    else {
       return $title;
    }
}

NOTE: most of the code came from: Replacing the title in admin list table