mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 10:18:36 +02:00
20 lines
405 B
PHP
20 lines
405 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\WebhookConfiguration;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class WebhookConfigurationFactory extends Factory
|
|
{
|
|
protected $model = WebhookConfiguration::class;
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'endpoint' => fake()->url(),
|
|
'description' => fake()->sentence(),
|
|
];
|
|
}
|
|
}
|