شرکت نمونه (Demo)
← بازگشت به راهنما

Cron و Scheduled Tasks



> version: 1.0 | last_updated: 2026-07-27 | audience: admin

Laravel Scheduler



در `bootstrap/app.php` تنظیم شده:

| ساعت | Command |
|------|---------|
| 06:00 | `billing:process-subscription-renewals` |
| 09:00 | `billing:send-invoice-reminders` |
| 10:00 | `billing:process-dunning` |

Crontab (WHM/cPanel)



```bash
* * * * * cd /home/bsshostkhaneh/bss && /usr/local/bin/ea-php83 artisan schedule:run >> /dev/null 2>&1
```

تست دستی



```bash
php artisan schedule:list
php artisan billing:process-subscription-renewals
php artisan billing:send-invoice-reminders
php artisan billing:process-dunning
```