Hi, I have custom Post Type
public function get_news() {
$args = array(
‘post_type’ => ‘news’,
‘post_status’ => ‘publish’,
);$news = new \WP_Query( $args ); return $news;
}
and Have News.blade.php
@php
$news = $get_news;get_the_post_thumbnail($news->ID, ‘large’);
@endphp
This Give me Post “feature image” and I want post type “news” feature image Please help me