mirror of
https://github.com/10h30/Test-Eloquent-Relationships.git
synced 2026-07-11 18:56:11 +09:00
6 lines
119 B
PHP
6 lines
119 B
PHP
<ul>
|
|
@foreach ($tasks as $task)
|
|
<li>{{ $task->name }} ({{ $task->user->name }})</li>
|
|
@endforeach
|
|
</ul>
|