for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bencoderus\Webhook\Webhooks;
class TestWebhook extends BaseWebhook
{
/**
* Webhook event name.
*/
protected $event = 'webhook.name';
* Webhook payload.
*
* @return array
public function data(): array
return [
'name' => 'John Doe',
'age' => 18
];
}