mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
21 lines
423 B
PHP
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,
|
|
];
|
|
}
|
|
}
|