Please set the following cron command on your server (Ignore if already done)
Why Cron Job Is Important:
  • Enables automated email notifications for orders, reservations, and password resets
  • Processes scheduled tasks like recurring payments and subscription renewals
  • Handles background tasks without affecting application performance
  • Ensures data synchronization and database maintenance runs automatically
  • Prevents missed notifications and keeps your restaurant management system running smoothly
* * * * * (Every Minute)
@php try { $phpPath = PHP_BINDIR.'/php'; } catch (\Throwable $th) { $phpPath = 'php'; } echo ' ' . $phpPath . ' ' . base_path() . '/artisan schedule:run >> /dev/null 2>&1'; @endphp
Note: {{$phpPath}} in the above command is the path of PHP on your server. To ensure it works correctly, please enter the correct PHP path for your server and provide the path to your script. If you're unsure how to set up a cron job, you may want to consult with your server administrator or hosting provider.