<table> <thead> <tr> <th>ID</th> <th>Name</th> </tr> </thead> <tbody> @foreach($countries as $country) <tr> <td>{{ $country->id }}</td> <td>{{ $country->name }}</td> </tr> @endforeach </tbody> </table>