diff --git a/app/Jobs/Util/ReminderJob.php b/app/Jobs/Util/ReminderJob.php index 78d233d357bd..6df012026b58 100644 --- a/app/Jobs/Util/ReminderJob.php +++ b/app/Jobs/Util/ReminderJob.php @@ -62,7 +62,8 @@ class ReminderJob implements ShouldQueue { nlog('Sending invoice reminders '.now()->format('Y-m-d h:i:s')); - Invoice::where('is_deleted', 0) + Invoice::query() + ->where('is_deleted', 0) ->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL]) ->whereNull('deleted_at') ->where('balance', '>', 0) diff --git a/resources/views/portal/ninja2020/gateways/wepay/signup/index.blade.php b/resources/views/portal/ninja2020/gateways/wepay/signup/index.blade.php index 9c30c242083c..bf0a08e2d9f6 100644 --- a/resources/views/portal/ninja2020/gateways/wepay/signup/index.blade.php +++ b/resources/views/portal/ninja2020/gateways/wepay/signup/index.blade.php @@ -1,6 +1,7 @@ @extends('portal.ninja2020.layout.clean', ['custom_body_class' => 'bg-gray-50']) @section('meta_title', ctrans('texts.sign_up_with_wepay')) +
@section('body')
We Pay @@ -8,6 +9,7 @@ @livewire('wepay-signup', ['user_id' => $user_id, 'company' => $company]) @endsection +
@push('footer')