mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 17:44:29 -04:00
Show line breaks in client/vendor notes
This commit is contained in:
parent
2328eaaf02
commit
7b678dda54
@ -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…
x
Reference in New Issue
Block a user