mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 09:58:37 +02:00
19 lines
327 B
PHP
19 lines
327 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\WebhookEvent;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class WebhookEventFactory extends Factory
|
|
{
|
|
protected $model = WebhookEvent::class;
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'name' => fake()->word,
|
|
];
|
|
}
|
|
}
|