We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cd2503 commit a8e40a3Copy full SHA for a8e40a3
app/Actions/Notifications/SendWebhookTestNotification.php
@@ -5,6 +5,7 @@
5
use App\Models\Result;
6
use App\Services\SpeedtestFakeResultGenerator;
7
use Filament\Notifications\Notification;
8
+use Illuminate\Support\Str;
9
use Lorisleiva\Actions\Concerns\AsAction;
10
use Spatie\WebhookServer\WebhookCall;
11
@@ -30,7 +31,7 @@ public function handle(array $webhooks)
30
31
WebhookCall::create()
32
->url($webhook['url'])
33
->payload([
- 'result_id' => fake()->uuid(),
34
+ 'result_id' => Str::uuid(),
35
'site_name' => 'Webhook Notification Testing',
36
'isp' => $fakeResult->data['isp'],
37
'ping' => $fakeResult->ping,
0 commit comments