Files
Test-Eloquent-Relationships/resources/views/teams/index.blade.php
T
2021-11-22 08:05:15 +02:00

15 lines
395 B
PHP

<ul>
@foreach ($teams as $team)
<li>
{{ $team->name }}
<ul>
@foreach ($team->users as $user)
{{ $user->name }}:
position {{ $user->pivot->position }},
started at {{ $user->pivot->created_at }}
@endforeach
</ul>
</li>
@endforeach
</ul>