mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fix client industry/size on details page
This commit is contained in:
parent
b62a86132e
commit
78da1246ae
@ -123,11 +123,12 @@
|
||||
<p><i>{!! nl2br(e($client->private_notes)) !!}</i></p>
|
||||
@endif
|
||||
|
||||
@if ($client->client_industry)
|
||||
{{ $client->client_industry->name }}<br/>
|
||||
@if ($client->industry || $client->size)
|
||||
{{ $client->industry->name }}
|
||||
@if ($client->industry && $client->size)
|
||||
|
|
||||
@endif
|
||||
@if ($client->client_size)
|
||||
{{ $client->client_size->name }}<br/>
|
||||
{{ $client->size->name }}<br/>
|
||||
@endif
|
||||
|
||||
@if ($client->website)
|
||||
|
Loading…
x
Reference in New Issue
Block a user