command('cron:mail-jobs') ->withoutOverlapping() ->everyMinute() ->sendOutputTo(storage_path() . '/logs/cron-mail-jobs.log');*/ $schedule->command('cron:mail-jobs')->everyMinute(); $schedule->command('cron:currency-rates') ->withoutOverlapping() ->twiceDaily(2, 14) //->everyMinute() //->emailOutputTo('byumak@rezervasyon.com') ->sendOutputTo(storage_path() . '/logs/cron-currency-rates.log'); $schedule->command('cron:roomrate-push-service')->everyMinute(); $schedule->command('cron:roomavailability-push-service')->everyMinute(); $schedule->command('cron:reservation-pull-service')->everyMinute(); $schedule->command('cron:reservation-push-service')->everyMinute(); $schedule->command('cron:property-trial-check')->withoutOverlapping()->twiceDaily(9, 15); $schedule->command('cron:property-trial-mail')->withoutOverlapping()->dailyAt('10:00'); //$schedule->command('queue:work')->everyMinute()->withoutOverlapping(); $schedule->command('queue:restart')->hourly()->withoutOverlapping(); $schedule->command('cron:summary-report-mail')->dailyAt('00:05'); $schedule->command('cron:summary-report-mail-sales')->dailyAt('09:00'); $schedule->command('cron:remove-payment-token-service')->withoutOverlapping()->dailyAt('02:00'); $schedule->command('cron:bookingengine-search-report-mail')->withoutOverlapping()->dailyAt('09:00'); $schedule->command('cron:propertymeta-roomrate-service')->withoutOverlapping()->dailyAt('03:00'); $schedule->command('cron:propertymeta-roomrateprice-service')->withoutOverlapping()->dailyAt('05:00'); $schedule->command('cron:propertymeta-roomratepush-service')->withoutOverlapping()->dailyAt('07:00'); //$schedule->command('cron:bar-sync-service')->withoutOverlapping()->cron('0 */2 * * *'); $schedule->command('cron:bar-sync-service')->cron('0 */2 * * *'); $schedule->command('cron:price-comparison-service')->withoutOverlapping()->weekly()->mondays()->at('02:00'); $schedule->command('cron:commission-service')->everyTenMinutes(); $schedule->command('cron:weather')->withoutOverlapping()->twiceDaily(2, 14); $schedule->command('cron:dashboard-cache')->withoutOverlapping()->dailyAt('03:00'); $schedule->command('cron:google-static-map')->withoutOverlapping()->dailyAt('04:00'); $schedule->command('cron:google-review')->withoutOverlapping()->weekly()->mondays()->at('14:00'); $schedule->command('cron:property-invoice-service')->withoutOverlapping()->dailyAt('04:00'); $schedule->command('cron:property-summary-service')->withoutOverlapping()->dailyAt('04:30'); $schedule->command('cron:property-review-schedule-service')->withoutOverlapping()->dailyAt('05:00'); $schedule->command('cron:meta-cancellation-service')->withoutOverlapping()->dailyAt('05:30'); } }