allow multi-line invoice notes/footer

This commit is contained in:
Denis Duliçi 2020-07-26 20:07:07 +03:00
parent dd9e95f57e
commit 330aee0dde
6 changed files with 9 additions and 9 deletions

View File

@ -222,7 +222,7 @@
<th> <th>
@if ($invoice->notes) @if ($invoice->notes)
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p> <p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p>
<p class="text-muted long-texts">{{ $invoice->notes }}</p> <p class="text-muted long-texts">{!! nl2br($invoice->notes) !!}</p>
@endif @endif
</th> </th>
</tr> </tr>

View File

@ -171,7 +171,7 @@
<th> <th>
@if ($invoice->notes) @if ($invoice->notes)
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p> <p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p>
<p class="text-muted long-texts">{{ $invoice->notes }}</p> <p class="text-muted long-texts">{!! nl2br($invoice->notes) !!}</p>
@endif @endif
</th> </th>
</tr> </tr>

View File

@ -160,7 +160,7 @@
@stack('notes_input_start') @stack('notes_input_start')
@if ($invoice->notes) @if ($invoice->notes)
<strong>{{ trans_choice('general.notes', 2) }}</strong><br><br> <strong>{{ trans_choice('general.notes', 2) }}</strong><br><br>
{{ $invoice->notes }} {!! nl2br($invoice->notes) !!}
@endif @endif
@stack('notes_input_end') @stack('notes_input_end')
</div> </div>
@ -199,7 +199,7 @@
<div class="row mt-1"> <div class="row mt-1">
<div class="col-100"> <div class="col-100">
<div class="text company"> <div class="text company">
<strong>{!! $invoice->footer !!}</strong> <strong>{!! nl2br($invoice->footer) !!}</strong>
</div> </div>
</div> </div>
</div> </div>

View File

@ -148,7 +148,7 @@
@if ($invoice->notes) @if ($invoice->notes)
<br> <br>
<strong>{{ trans_choice('general.notes', 2) }}</strong><br><br> <strong>{{ trans_choice('general.notes', 2) }}</strong><br><br>
{{ $invoice->notes }} {!! nl2br($invoice->notes) !!}
@endif @endif
@stack('notes_input_end') @stack('notes_input_end')
</div> </div>
@ -187,7 +187,7 @@
<div class="row mt-4"> <div class="row mt-4">
<div class="col-100 text-left"> <div class="col-100 text-left">
<div class="text company"> <div class="text company">
<strong>{!! $invoice->footer !!}<strong> <strong>{!! nl2br($invoice->footer) !!}<strong>
</div> </div>
</div> </div>
</div> </div>

View File

@ -129,7 +129,7 @@
@stack('notes_input_start') @stack('notes_input_start')
@if ($invoice->notes) @if ($invoice->notes)
<strong>{{ trans_choice('general.notes', 2) }}</strong><br><br> <strong>{{ trans_choice('general.notes', 2) }}</strong><br><br>
{{ $invoice->notes }} {!! nl2br($invoice->notes) !!}
@endif @endif
@stack('notes_input_end') @stack('notes_input_end')
</div> </div>
@ -162,7 +162,7 @@
<div class="row mt-7"> <div class="row mt-7">
<div class="col-100 py-2" style="background-color:{{ setting('invoice.color') }} !important; -webkit-print-color-adjust: exact;"> <div class="col-100 py-2" style="background-color:{{ setting('invoice.color') }} !important; -webkit-print-color-adjust: exact;">
<div class="text pl-2"> <div class="text pl-2">
<strong class="text-white">{!! $invoice->footer !!}</strong> <strong class="text-white">{!! nl2br($invoice->footer) !!}</strong>
</div> </div>
</div> </div>
</div> </div>

View File

@ -387,7 +387,7 @@
<tr> <tr>
<th> <th>
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p> <p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p>
<p class="text-muted long-texts">{{ $invoice->notes }}</p> <p class="text-muted long-texts">{!! nl2br($invoice->notes) !!}</p>
</th> </th>
</tr> </tr>
@endif @endif