$news = NewsModel::with('country')->paginate(1);
return view('welcome', ['news' => $news]);
public function country()
{
return $this->belongsTo(CountryModel::class, 'country', 'id');
}
@foreach($news as $item)
{{ $item->country->country }}
@endforeach