mirror of
https://github.com/10h30/Test-Eloquent-Relationships.git
synced 2026-07-11 18:56:11 +09:00
15 lines
395 B
PHP
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>
|