Show line breaks in client/vendor notes

This commit is contained in:
Hillel Coren 2018-01-08 12:06:09 +02:00
parent 2328eaaf02
commit 7b678dda54
2 changed files with 3 additions and 3 deletions

View File

@ -116,11 +116,11 @@
<p/>
@if ($client->public_notes)
<p><i>{{ $client->public_notes }}</i></p>
<p><i>{!! nl2br(e($client->public_notes)) !!}</i></p>
@endif
@if ($client->private_notes)
<p><i>{{ $client->private_notes }}</i></p>
<p><i>{!! nl2br(e($client->private_notes)) !!}</i></p>
@endif
@if ($client->client_industry)

View File

@ -113,7 +113,7 @@
@endif
@if ($vendor->private_notes)
<p><i>{{ $vendor->private_notes }}</i></p>
<p><i>{!! nl2br(e($vendor->private_notes)) !!}</i></p>
@endif
@if ($vendor->vendor_industry)