@php $cronJobs = [ [ 'label' => 'SYNC ACCOUNTS', 'type' => 'sync_accounts', 'cmd' => 'sync:invoice-accounts', 'last_sync' => $sync_accounts_last_sync_datetime ?? null, ], [ 'label' => 'SYNC TAX RATES', 'type' => 'sync_tax_rates', 'cmd' => 'sync:invoice-tax-rates', 'last_sync' => $sync_tax_rates_last_sync_datetime ?? null, ], [ 'label' => 'SYNC PAYRATES', 'type' => 'sync_payrates', 'cmd' => 'sync:invoice-payrates', 'last_sync' => $sync_payrates_last_sync_datetime ?? null, ], [ 'label' => 'SYNC CONTACTS AND LINK WITH PARTICIPANTS', 'type' => 'sync_contacts', 'cmd' => 'sync:invoice-contacts', 'last_sync' => $sync_contacts_last_sync_datetime ?? null, ], ]; @endphp