I'm trying to show a table in laravel blade same as the image below

In the HTML Blade table To make a cell span more than one row, I use the rowspan attribute. But when I try to do it with foreach in blade view it not working perfectly. foreach loop return the team raw three times.
here is my blade code
@foreach($datas as $data)
<tr>
<td rowspan="3">{{$data->team_name}}</td>
<td>{{$data->name}}</td>
<td>{{$data->email}}</td>
<td>{{$data->phone}}</td>
</tr>
@endforeach
Please help.