Merge branch 'master' into laravel-7

This commit is contained in:
Denis Duliçi
2020-03-15 01:19:41 +03:00
committed by GitHub
184 changed files with 2472 additions and 1279 deletions

View File

@ -32,6 +32,9 @@ class BillReminder extends Command
*/
public function handle()
{
// Disable model cache
config(['laravel-model-caching.enabled' => false]);
// Get all companies
$companies = Company::enabled()->cursor();

View File

@ -32,6 +32,9 @@ class InvoiceReminder extends Command
*/
public function handle()
{
// Disable model cache
config(['laravel-model-caching.enabled' => false]);
// Get all companies
$companies = Company::enabled()->cursor();

View File

@ -45,6 +45,9 @@ class RecurringCheck extends Command
*/
public function handle()
{
// Disable model cache
config(['laravel-model-caching.enabled' => false]);
// Get all companies
$companies = Company::enabled()->cursor();