vito/database/factories/NotificationChannelFactory.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

21 lines
423 B
PHP

<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class NotificationChannelFactory extends Factory
{
public function definition(): array
{
return [
'label' => $this->faker->text(10),
'provider' => 'email',
'data' => [
'email' => $this->faker->email,
],
'connected' => 1,
];
}
}