Don’t show history select if no options
This commit is contained in:
parent
b7c783aa15
commit
47381d54f2
1 changed files with 9 additions and 1 deletions
|
|
@ -49,12 +49,20 @@
|
|||
@section('content')
|
||||
|
||||
{!! Former::open()->addClass('form-inline')->onchange('refreshPDF()') !!}
|
||||
{!! Former::select('version')->options($versionsSelect)->label(trans('select_version'))->style('background-color: white !important') !!}
|
||||
|
||||
@if (count($versionsSelect))
|
||||
{!! Former::select('version')->options($versionsSelect)->label(trans('select_version'))->style('background-color: white !important') !!}
|
||||
@endif
|
||||
|
||||
{!! Button::primary(trans('texts.edit_' . $invoice->getEntityType()))->asLinkTo(URL::to('/' . $invoice->getEntityType() . 's/' . $invoice->public_id . '/edit'))->withAttributes(array('class' => 'pull-right')) !!}
|
||||
{!! Former::close() !!}
|
||||
|
||||
<br/> <br/>
|
||||
|
||||
@if ( ! count($versionsSelect))
|
||||
<br/> <br/>
|
||||
@endif
|
||||
|
||||
@include('invoices.pdf', ['account' => Auth::user()->account, 'pdfHeight' => 800])
|
||||
|
||||
@if (Utils::hasFeature(FEATURE_DOCUMENTS) && $invoice->account->invoice_embed_documents)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue