input('hours').':'.$request->input('minutes'); $data = [ 'account_id' => Auth::user()->account_id, 'author_id' => Auth::id(), 'label' => 'Telegram', 'type' => UserNotificationChannel::TYPE_TELEGRAM, 'content' => 'tbd', 'verify_email' => false, 'preferred_time' => $time, ]; $channel = (new CreateUserNotificationChannel)->execute($data); return response()->json([ 'data' => NotificationsIndexViewHelper::dtoTelegram($channel), ], 200); } }