Show line breaks in client/vendor notes
This commit is contained in:
parent
2328eaaf02
commit
7b678dda54
2 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
2
resources/views/vendors/show.blade.php
vendored
2
resources/views/vendors/show.blade.php
vendored
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue