1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Merge pull request #6733 from beganovich/v5-706

Hide recurring invoices with `is_deleted`
This commit is contained in:
David Bomba 2021-09-28 07:47:50 +10:00 committed by GitHub
commit 950e11349b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,6 +47,7 @@ class RecurringInvoicesTable extends Component
->with('client')
->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc')
->withTrashed()
->where('is_deleted', false)
->paginate($this->per_page);
return render('components.livewire.recurring-invoices-table', [