diff --git a/README.md b/README.md
index 537d517..2a738b7 100644
--- a/README.md
+++ b/README.md
@@ -372,6 +372,28 @@ It will build a `remove` Turbo Stream if the model was deleted (or if it is tras
return response()->turboStream($comment, 'append');
```
+You may also [target multiple elements](https://turbo.hotwired.dev/reference/streams#targeting-multiple-elements) using CSS classes using the `xAll` methods:
+
+```php
+response()->turboStream()->appendAll('.comment', 'Some content');
+response()->turboStream()->prependAll('.comment', 'Some content');
+response()->turboStream()->updateAll('.comment', 'Some content');
+response()->turboStream()->removeAll('.comment');
+response()->turboStream()->beforeAll('.comment', 'Some content');
+response()->turboStream()->afterAll('.comment', 'Some content');
+```
+
+With the exception of the `removeAll` method, all these `xAll` accept as the second parameter a string of inline content, an instance of a View (which you may create using the `view()` function provided by Laravel), or an instance of the `HtmlSafe` class.
+
+When creating Turbo Stream using the builders, you may also specify the CSS class using the `targets()` (plural) method instead of the singular version:
+
+```php
+return response()->turboStream()
+ ->targets('.comment')
+ ->action('append')
+ ->view('comments._comment', ['comment' => $comment]);
+```
+
#### Turbo Streams Combo
diff --git a/docs/broadcasting.md b/docs/broadcasting.md
new file mode 100644
index 0000000..049d457
--- /dev/null
+++ b/docs/broadcasting.md
@@ -0,0 +1,308 @@
+# Broadcasting Turbo Streams Over WebSockets With Laravel Echo
+
+So far, we have used Turbo Streams over HTTP to handle the case of updating multiple parts of the page for a single user after a form submission. In addition to that, you may want to broadcast model changes over WebSockets to all users that are viewing the same page. Although nice, **you don't have to use WebSockets if you don't have the need for it. You may still benefit from Turbo Streams over HTTP.**
+
+We can broadcast to all users over WebSockets those exact same Turbo Stream tags we are returning to a user after a form submission. That makes use of Laravel Echo and Laravel's Broadcasting component.
+
+You may still feed the user making the changes with Turbo Streams over HTTP and broadcast the changes to other users over WebSockets. This way, the user making the change will have an instant feedback compared to having to wait for a background worker to pick up the job and send it to them over WebSockets.
+
+First, you need to uncomment the Laravel Echo setup on your [`resources/js/bootstrap.js`](https://github.com/laravel/laravel/blob/9.x/resources/js/bootstrap.js#L21-L34) file and make sure you compile your assets after doing that by running:
+
+```bash
+npm run dev
+```
+
+Then, you'll need to setup the [Laravel Broadcasting](https://laravel.com/docs/9.x/broadcasting) component for your app. One of the first steps is to configure your environment variables to look something like this:
+
+```dotenv
+PUSHER_APP_ID=
+PUSHER_APP_KEY=
+PUSHER_APP_SECRET=
+PUSHER_APP_CLUSTER=us2
+PUSHER_APP_HOST=websockets.test
+PUSHER_APP_PORT=6001
+
+MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
+MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
+MIX_PUSHER_APP_HOST="localhost"
+MIX_PUSHER_APP_PORT="${PUSHER_APP_PORT}"
+MIX_PUSHER_APP_USE_SSL=false
+```
+
+Notice that some of these environment variables are used by your front-end assets during compilation. That's why you see some duplicates that are just prefixed with `MIX_`.
+
+These settings assume you're using the [Laravel WebSockets](https://github.com/beyondcode/laravel-websockets) package. Check out the Echo configuration at [resources/js/bootstrap.js](https://github.com/laravel/laravel/blob/9.x/resources/js/bootstrap.js#L21-L34) to see which environment variables are needed during build time. You may also use [Pusher](https://pusher.com/) or [Ably](https://ably.io/) instead of the Laravel WebSockets package, if you don't want to host it yourself.
+
+
+## Broadcasting Model Changes
+
+With Laravel Echo properly configured, you may now broadcast model changes using WebSockets. First thing you need to do is use the `Broadcasts` trait in your model:
+
+```php
+use Tonysm\TurboLaravel\Models\Broadcasts;
+
+class Comment extends Model
+{
+ use Broadcasts;
+}
+```
+
+This trait will add some methods to your model that you can use to trigger broadcasts. Here's how you can broadcast appending a new comment to all users visiting the post page:
+
+```php
+Route::post('posts/{post}/comments', function (Post $post) {
+ $comment = $post->comments()->create(/** params */);
+
+ $comment->broadcastAppend()->later();
+
+ if (request()->wantsTurboStream()) {
+ return turbo_stream($comment);
+ }
+
+ return back();
+});
+```
+
+Here are the methods now available to your model:
+
+```php
+$comment->broadcastAppend();
+$comment->broadcastPrepend();
+$comment->broadcastBefore('target_dom_id');
+$comment->broadcastAfter('target_dom_id');
+$comment->broadcastReplace();
+$comment->broadcastUpdate();
+$comment->broadcastRemove();
+```
+
+These methods will assume you want to broadcast the Turbo Streams to your model's channel. However, you will also find alternative methods where you can specify either a model or the broadcasting channels you want to send the broadcasts to:
+
+```php
+$comment->broadcastAppendTo($post);
+$comment->broadcastPrependTo($post);
+$comment->broadcastBeforeTo($post, 'target_dom_id');
+$comment->broadcastAfterTo($post, 'target_dom_id');
+$comment->broadcastReplaceTo($post);
+$comment->broadcastUpdateTo($post);
+$comment->broadcastRemoveTo($post);
+```
+
+These `broadcastXTo()` methods accept either a model, a channel instance or an array containing both of these. When it receives a model, it will guess the channel name using the broadcasting channel convention (see [#conventions](#conventions)).
+
+All of these broadcasting methods return an instance of a `PendingBroadcast` class that will only dispatch the broadcasting job when that pending object is being garbage collected. Which means that you can control a lot of the properties of the broadcast by chaining on that instance before it goes out of scope, like so:
+
+```php
+$comment->broadcastAppend()
+ ->to($post)
+ ->view('comments/_custom_view_partial', [
+ 'comment' => $comment,
+ 'post' => $post,
+ ])
+ ->toOthers() // Do not send to the current user.
+ ->later(); // Dispatch a background job to send.
+```
+
+You may want to hook those methods in the model events of your model to trigger Turbo Stream broadcasts whenever your models are changed in any context, such as:
+
+```php
+class Comment extends Model
+{
+ use Broadcasts;
+
+ protected static function booted()
+ {
+ static::created(function (Comment $comment) {
+ $comment->broadcastPrependTo($comment->post)
+ ->toOthers()
+ ->later();
+ });
+
+ static::updated(function (Comment $comment) {
+ $comment->broadcastReplaceTo($comment->post)
+ ->toOthers()
+ ->later();
+ });
+
+ static::deleted(function (Comment $comment) {
+ $comment->broadcastRemoveTo($comment->post)
+ ->toOthers()
+ ->later();
+ });
+ }
+}
+```
+
+In case you want to broadcast all these changes automatically, instead of specifying them all, you may want to add a `$broadcasts` property to your model, which will instruct the `Broadcasts` trait to trigger the Turbo Stream broadcasts for the created, updated and deleted model events, like so:
+
+```php
+class Comment extends Model
+{
+ use Broadcasts;
+
+ protected $broadcasts = true;
+}
+```
+
+This will achieve almost the same thing as the example where we registered the model events manually, with a couple nuanced differences. First, by default, it will broadcast an `append` Turbo Stream to newly created models. You may want to use `prepend` instead. You can do so by using an array with a `insertsBy` key and `prepend` action as value instead of a boolean, like so:
+
+```php
+class Comment extends Model
+{
+ use Broadcasts;
+
+ protected $broadcasts = [
+ 'insertsBy' => 'prepend',
+ ];
+}
+```
+
+This will also automatically hook into the model events, but instead of broadcasting new instances as `append` it will use `prepend`.
+
+Secondly, it will send all changes to this model's broadacsting channel, except for when the model is created (since no one would be listening to its direct channel). In our case, we want to direct the broadcasts to the post linked to this model instead. We can achieve that by adding a `$broadcastsTo` property to the model, like so:
+
+```php
+class Comment extends Model
+{
+ use Broadcasts;
+
+ protected $broadcasts = [
+ 'insertsBy' => 'prepend',
+ ];
+
+ protected $broadcastsTo = 'post';
+
+ public function post()
+ {
+ return $this->belongsTo(Post::class);
+ }
+}
+```
+
+That property can either be a string that contains the name of a relationship of this model or an array of relationships.
+
+Alternatively, you may prefer to have more control over where these broadcasts are being sent to by implementing a `broadcastsTo` method in your model instead of using the property. This way, you can return a single model, a broadcasting channel instance or an array containing either of them, like so:
+
+```php
+use Illuminate\Broadcasting\Channel;
+
+class Comment extends Model
+{
+ use Broadcasts;
+
+ protected $broadcasts = [
+ 'insertsBy' => 'prepend',
+ ];
+
+ public function post()
+ {
+ return $this->belongsTo(Post::class);
+ }
+
+ public function broadcastsTo()
+ {
+ return [
+ $this,
+ $this->post,
+ new Channel('full-control'),
+ ];
+ }
+}
+```
+
+Newly created models using the auto-broadcasting feature will be broadcasted to a pluralized version of the model's basename. So if you have a `App\Models\PostComment`, you may expect broadcasts of newly created models to be sent to a private channel called `post_comments`. Again, this convention is only valid for newly created models. Updates/Removals will still be sent to the model's own private channel by default using Laravel's convention for channel names. You may want to specify the channel name for newly created models to be broadcasted to with the `stream` key:
+
+```php
+class Comment extends Model
+{
+ use Broadcasts;
+
+ protected $broadcasts = [
+ 'stream' => 'some_comments',
+ ];
+}
+```
+
+Having a `$broadcastsTo` property or implementing the `broadcastsTo()` method in your model will have precedence over this, so newly created models will be sent to the channels specified on those places instead of using the convention or the `stream` option.
+
+
+## Listening to Turbo Stream Broadcasts
+
+You may listen to a Turbo Stream broadcast message on your pages by adding the custom HTML tag `` that is published to your application's assets (see [here](https://github.com/tonysm/turbo-laravel/blob/main/stubs/resources/js/elements/turbo-echo-stream-tag.js)). You need to pass the channel you want to listen to broadcasts on using the `channel` attribute of this element, like so.
+
+```blade
+
+```
+
+You may prefer using the convenient `` Blade component, passing the model as the `source` prop to it, something like this:
+
+```blade
+
+```
+
+By default, it expects a private channel, so the it must be used in a page for already authenticated users. You may control the channel type in the tag with a `type` attribute.
+
+```blade
+
+```
+
+To register the Broadcast Auth Route you may use Laravel's built-in conventions as well:
+
+**file: routes/channel.php**
+```php
+use App\Models\Post;
+use App\Models\User;
+use Illuminate\Support\Facades\Broadcast;
+
+Broadcast::channel(Post::class, function (User $user, Post $post) {
+ return $user->belongsToTeam($post->team);
+});
+```
+
+You may want to read the [Laravel Broadcasting](https://laravel.com/docs/9.x/broadcasting) documentation.
+
+
+## Broadcasting Turbo Streams to Other Users Only
+
+As mentioned erlier, you may want to feed the current user with Turbo Streams using HTTP requests and only send the broadcasts to other users. There are a couple ways you can achieve that.
+
+First, you can chain on the broadcasting methods, like so:
+
+```php
+$comment->broadcastAppendTo($post)
+ ->toOthers();
+```
+
+Second, you can use the Turbo Facade like so:
+
+```php
+use Tonysm\TurboLaravel\Facades\Turbo;
+
+Turbo::broadcastToOthers(function () {
+ // ...
+});
+```
+
+This way, any broadcast that happens inside the scope of the Closure will only be sent to other users.
+
+Third, you may use that same method but without the Closure inside a ServiceProvider, for instance, to instruct the package to only send turbo stream broadcasts to other users globally:
+
+```php
+appendAll('.comment', 'Some content');
+turbo_stream()->prependAll('.comment', 'Some content');
+turbo_stream()->updateAll('.comment', 'Some content');
+turbo_stream()->removeAll('.comment');
+turbo_stream()->beforeAll('.comment', 'Some content');
+turbo_stream()->afterAll('.comment', 'Some content');
+```
+
+With the exception of the `removeAll` method, all these `xAll` accept as the second parameter a string of inline content, an instance of a View (which you may create using the `view()` function provided by Laravel), or an instance of the `HtmlSafe` class.
+
+When creating Turbo Stream using the builders, you may also specify the CSS class using the `targets()` (plural) method instead of the singular version:
+
+```php
+return turbo_stream()
+ ->targets('.comment')
+ ->action('append')
+ ->view('comments._comment', ['comment' => $comment]);
+```
+
## Turbo Streams Combo
You may combine multiple Turbo Stream responses in a single one like so:
@@ -224,311 +247,4 @@ Similar to the `` Blade component, there's also a `
-## Broadcasting Model Changes
-
-With Laravel Echo properly configured, you may now broadcast model changes using WebSockets. First thing you need to do is use the `Broadcasts` trait in your model:
-
-```php
-use Tonysm\TurboLaravel\Models\Broadcasts;
-
-class Comment extends Model
-{
- use Broadcasts;
-}
-```
-
-This trait will add some methods to your model that you can use to trigger broadcasts. Here's how you can broadcast appending a new comment to all users visiting the post page:
-
-```php
-Route::post('posts/{post}/comments', function (Post $post) {
- $comment = $post->comments()->create(/** params */);
-
- $comment->broadcastAppend()->later();
-
- if (request()->wantsTurboStream()) {
- return turbo_stream($comment);
- }
-
- return back();
-});
-```
-
-Here are the methods now available to your model:
-
-```php
-$comment->broadcastAppend();
-$comment->broadcastPrepend();
-$comment->broadcastBefore('target_dom_id');
-$comment->broadcastAfter('target_dom_id');
-$comment->broadcastReplace();
-$comment->broadcastUpdate();
-$comment->broadcastRemove();
-```
-
-These methods will assume you want to broadcast the Turbo Streams to your model's channel. However, you will also find alternative methods where you can specify either a model or the broadcasting channels you want to send the broadcasts to:
-
-```php
-$comment->broadcastAppendTo($post);
-$comment->broadcastPrependTo($post);
-$comment->broadcastBeforeTo($post, 'target_dom_id');
-$comment->broadcastAfterTo($post, 'target_dom_id');
-$comment->broadcastReplaceTo($post);
-$comment->broadcastUpdateTo($post);
-$comment->broadcastRemoveTo($post);
-```
-
-These `broadcastXTo()` methods accept either a model, a channel instance or an array containing both of these. When it receives a model, it will guess the channel name using the broadcasting channel convention (see [#conventions](#conventions)).
-
-All of these broadcasting methods return an instance of a `PendingBroadcast` class that will only dispatch the broadcasting job when that pending object is being garbage collected. Which means that you can control a lot of the properties of the broadcast by chaining on that instance before it goes out of scope, like so:
-
-```php
-$comment->broadcastAppend()
- ->to($post)
- ->view('comments/_custom_view_partial', [
- 'comment' => $comment,
- 'post' => $post,
- ])
- ->toOthers() // Do not send to the current user.
- ->later(); // Dispatch a background job to send.
-```
-
-You may want to hook those methods in the model events of your model to trigger Turbo Stream broadcasts whenever your models are changed in any context, such as:
-
-```php
-class Comment extends Model
-{
- use Broadcasts;
-
- protected static function booted()
- {
- static::created(function (Comment $comment) {
- $comment->broadcastPrependTo($comment->post)
- ->toOthers()
- ->later();
- });
-
- static::updated(function (Comment $comment) {
- $comment->broadcastReplaceTo($comment->post)
- ->toOthers()
- ->later();
- });
-
- static::deleted(function (Comment $comment) {
- $comment->broadcastRemoveTo($comment->post)
- ->toOthers()
- ->later();
- });
- }
-}
-```
-
-In case you want to broadcast all these changes automatically, instead of specifying them all, you may want to add a `$broadcasts` property to your model, which will instruct the `Broadcasts` trait to trigger the Turbo Stream broadcasts for the created, updated and deleted model events, like so:
-
-```php
-class Comment extends Model
-{
- use Broadcasts;
-
- protected $broadcasts = true;
-}
-```
-
-This will achieve almost the same thing as the example where we registered the model events manually, with a couple nuanced differences. First, by default, it will broadcast an `append` Turbo Stream to newly created models. You may want to use `prepend` instead. You can do so by using an array with a `insertsBy` key and `prepend` action as value instead of a boolean, like so:
-
-```php
-class Comment extends Model
-{
- use Broadcasts;
-
- protected $broadcasts = [
- 'insertsBy' => 'prepend',
- ];
-}
-```
-
-This will also automatically hook into the model events, but instead of broadcasting new instances as `append` it will use `prepend`.
-
-Secondly, it will send all changes to this model's broadacsting channel, except for when the model is created (since no one would be listening to its direct channel). In our case, we want to direct the broadcasts to the post linked to this model instead. We can achieve that by adding a `$broadcastsTo` property to the model, like so:
-
-```php
-class Comment extends Model
-{
- use Broadcasts;
-
- protected $broadcasts = [
- 'insertsBy' => 'prepend',
- ];
-
- protected $broadcastsTo = 'post';
-
- public function post()
- {
- return $this->belongsTo(Post::class);
- }
-}
-```
-
-That property can either be a string that contains the name of a relationship of this model or an array of relationships.
-
-Alternatively, you may prefer to have more control over where these broadcasts are being sent to by implementing a `broadcastsTo` method in your model instead of using the property. This way, you can return a single model, a broadcasting channel instance or an array containing either of them, like so:
-
-```php
-use Illuminate\Broadcasting\Channel;
-
-class Comment extends Model
-{
- use Broadcasts;
-
- protected $broadcasts = [
- 'insertsBy' => 'prepend',
- ];
-
- public function post()
- {
- return $this->belongsTo(Post::class);
- }
-
- public function broadcastsTo()
- {
- return [
- $this,
- $this->post,
- new Channel('full-control'),
- ];
- }
-}
-```
-
-Newly created models using the auto-broadcasting feature will be broadcasted to a pluralized version of the model's basename. So if you have a `App\Models\PostComment`, you may expect broadcasts of newly created models to be sent to a private channel called `post_comments`. Again, this convention is only valid for newly created models. Updates/Removals will still be sent to the model's own private channel by default using Laravel's convention for channel names. You may want to specify the channel name for newly created models to be broadcasted to with the `stream` key:
-
-```php
-class Comment extends Model
-{
- use Broadcasts;
-
- protected $broadcasts = [
- 'stream' => 'some_comments',
- ];
-}
-```
-
-Having a `$broadcastsTo` property or implementing the `broadcastsTo()` method in your model will have precedence over this, so newly created models will be sent to the channels specified on those places instead of using the convention or the `stream` option.
-
-
-## Listening to Turbo Stream Broadcasts
-
-You may listen to a Turbo Stream broadcast message on your pages by adding the custom HTML tag `` that is published to your application's assets (see [here](https://github.com/tonysm/turbo-laravel/blob/main/stubs/resources/js/elements/turbo-echo-stream-tag.js)). You need to pass the channel you want to listen to broadcasts on using the `channel` attribute of this element, like so.
-
-```blade
-
-```
-
-You may prefer using the convenient `` Blade component, passing the model as the `source` prop to it, something like this:
-
-```blade
-
-```
-
-By default, it expects a private channel, so the it must be used in a page for already authenticated users. You may control the channel type in the tag with a `type` attribute.
-
-```blade
-
-```
-
-To register the Broadcast Auth Route you may use Laravel's built-in conventions as well:
-
-**file: routes/channel.php**
-```php
-use App\Models\Post;
-use App\Models\User;
-use Illuminate\Support\Facades\Broadcast;
-
-Broadcast::channel(Post::class, function (User $user, Post $post) {
- return $user->belongsToTeam($post->team);
-});
-```
-
-You may want to read the [Laravel Broadcasting](https://laravel.com/docs/9.x/broadcasting) documentation.
-
-
-## Broadcasting Turbo Streams to Other Users Only
-
-As mentioned erlier, you may want to feed the current user with Turbo Streams using HTTP requests and only send the broadcasts to other users. There are a couple ways you can achieve that.
-
-First, you can chain on the broadcasting methods, like so:
-
-```php
-$comment->broadcastAppendTo($post)
- ->toOthers();
-```
-
-Second, you can use the Turbo Facade like so:
-
-```php
-use Tonysm\TurboLaravel\Facades\Turbo;
-
-Turbo::broadcastToOthers(function () {
- // ...
-});
-```
-
-This way, any broadcast that happens inside the scope of the Closure will only be sent to other users.
-
-Third, you may use that same method but without the Closure inside a ServiceProvider, for instance, to instruct the package to only send turbo stream broadcasts to other users globally:
-
-```php
-