David Bomba 95f1d24b8f
Access module relations from parent (#2553)
* Refactor JS directory structure

* Access Module relations from Parent entity
2018-12-13 22:01:33 +11:00

14 lines
348 B
PHP

<div class="container-fluid">
@if($client)
<span>{{ $client->name }} </span>
@endif
<ul>
@foreach($client->notes()->get() as $note)
<li> {{ $note->description }} </li>
@endforeach
</ul>
</div>