Only show estimated invoicing if we have a next invoice to show
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 33s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
Deon George 2024-08-16 17:51:38 +10:00
parent 3b40e92c48
commit 7a41dd803f

View File

@ -64,7 +64,7 @@
<div class="card-body p-2">
<div class="tab-content">
@if($x=! ($o->suspend_billing || $o->external_billing))
@if($x=! ($o->suspend_billing || $o->external_billing) && $o->next_invoice)
<div @class(['tab-pane','fade','show active'=>! (session()->has('service_update') || session()->has('charge_add'))]) id="pending_items">
@include('theme.backend.adminlte.service.widget.invoice')
</div>