Events can only be recorded using a single private key, this is the default behaviour. This means that you and your users can Trust that the messages will only come from you, the owner of the hedera private key.
If a Topic doesn't exist in your database one will be created before the consensus message is dispatched.
Imports
use Trustenterprises\LaravelHashgraph\LaravelHashgraph;
use Trustenterprises\LaravelHashgraph\Models\ConsensusMessage;
Code
The Consensus Message takes a String if you wish to use an object convert it first using json_encode. We suggest that this code should be run in a Job as it uses the synchronous
$message = new ConsensusMessage('This is an event you wish to store');