mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-04 04:14:37 -04:00
14 lines
348 B
PHP
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>
|