Files
nnterp-react-admin/app/Events/CreateMetaWebhook.php
2026-03-13 20:49:46 +08:00

18 lines
253 B
PHP

<?php
namespace App\Events;
use Illuminate\Foundation\Events\Dispatchable;
class CreateMetaWebhook
{
use Dispatchable;
/**
* Create a new event instance.
*/
public function __construct(
public array $payload,
){}
}