mirror of
https://github.com/10h30/Test-Eloquent-Relationships.git
synced 2026-07-11 18:56:11 +09:00
9 lines
194 B
PHP
9 lines
194 B
PHP
<h2>{{ $user->name }}</h2>
|
|
|
|
<b>Comments on their tasks:</b>
|
|
<ul>
|
|
@foreach ($user->comments as $comment)
|
|
<li>{{ $comment->name }} ({{ $comment->comment }})</li>
|
|
@endforeach
|
|
</ul>
|