Call meta api
composer require kombyte/meta-whatsapp-apiuse Kombyte\Whatsapp\Api;
use Kombyte\Whatsapp\Messages;Create new Messages instance with Api
$messages = new Messages(new Api($yourToken));Add destination
$messages->to('phone number')
->sendText('Hello');