Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/app/Console/Commands/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/app/Console/Commands/SyncTemplateData.php

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class SyncTemplateData extends Command
{
    protected $signature = 'sync:data';
    protected $description = 'Sync template data from WhatsApp API to the database';

    public function handle()
    {
        // Add your synchronization logic here
        // Fetch data from the WhatsApp API and update the database
    }
}