3 namespace Database\Factories;
5 use Illuminate\Database\Eloquent\Factories\Factory;
7 class WebhookFactory extends Factory
10 * Define the model's default state.
14 public function definition()
17 'name' => 'My webhook for ' . $this->faker->country(),
18 'endpoint' => $this->faker->url,