// Assume the user and token from the previous steps.
$token_id = $token->getTokenId();
$encrypted_key = $user->encrypted_key;
$public_key = $user->public_key;
$hedera_id = $user->hedera_id;
// The object to bequest tokens to an account
$bequest = new BequestToken($encrypted_key, $token_id, $hedera_id, $amount);
// The response from hedera, to send tokens
$response = LaravelHashgraph::bequestToken($bequest);
// This transaction id can be tracked on a hedera explorer such as dragonglass.
$response->getTransactionId();