you should your services each by column like
@foreach($accounts as $account)
<table>
<thead>
<tr>
<th>Service {{$account->id}}</th>
<th>Email</th>
<th>Password</th>
<th>Country</th>
<th>Expiration</th>
<th>Last Days</th>
</tr>
</thead>
<tbody>
<tr>
<td width="20">{{ $account->service->name }}</td>
<td width="35">{{ $account->email }}</td>
<td width="13">{{ $account->password }}</td>
<td width="10">{{ $account->pais }}</td>
<td width="20">{{ $account->dateto }}</td>
<td width="10">{{ $account->last_days }}</td>
</tr>
</tbody>
</table>
@endforeach