diff --git a/config/websockets.php b/config/websockets.php index 490e72b..fc17102 100644 --- a/config/websockets.php +++ b/config/websockets.php @@ -6,7 +6,7 @@ return [ /** * This package comes with multi tenancy out of the box. Here you can - * configure the different clients that can use the webSockets server. + * configure the different apps that can use the webSockets server. * * You should make sure that the app id is numeric. */ @@ -20,13 +20,13 @@ return [ ], /** - * This class is responsible for finding the clients. The default provider - * will use the clients defined in this config file. + * This class is responsible for finding the apps. The default provider + * will use the apps defined in this config file. * * You can create a custom provider by implementing the - * `ClientProvier` interface. + * `appProvier` interface. */ - 'client_provider' => ConfigAppProvider::class, + 'app_provider' => ConfigAppProvider::class, /* * This array contains the hosts of which you want to allow incoming requests. diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index bb4b5a3..9d755f2 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -17,11 +17,11 @@