Ваш объект должен быть похож на это перед переходом к представлению.
$countries = json_decode(json_encode( [
['id' => 1, 'country' => 'India'],
['id' => 2, 'country' => 'Bangladesh'],
['id' => 3, 'country' => 'Shrilanka'],
['id' => 4, 'country' => 'Afganistan'],
['id' => 5, 'country' => 'Nepal']
]));
/*
dd of the object would be look like this.
array:5 [▼
0 => {#248 ▼
+"id": 1
+"country": "India"
}
1 => {#222 ▼
+"id": 2
+"country": "Bangladesh"
}
2 => {#249 ▼
+"id": 3
+"country": "Shrilanka"
}
3 => {#251 ▼
+"id": 4
+"country": "Afganistan"
}
4 => {#252 ▼
+"id": 5
+"country": "Nepal"
}
]
*/