create([ 'label' => 'Slack', 'provider' => Slack::id(), 'data' => [ 'webhook' => 'slack_webhook', ], 'connected' => 1, ]); NotificationChannel::factory()->create([ 'label' => 'Discord', 'provider' => Discord::id(), 'data' => [ 'webhook' => 'discord_webhook', ], 'connected' => 1, ]); NotificationChannel::factory()->create([ 'label' => 'Telegram', 'provider' => Telegram::id(), 'data' => [ 'token' => 'telegram_token', 'chat_id' => 'telegram_chat_id', ], 'connected' => 1, ]); NotificationChannel::factory()->create([ 'label' => 'Email', 'provider' => Email::id(), 'data' => [ 'email' => 'email@vitodeploy.com', ], 'connected' => 1, ]); } }