Wirechat Views
Publish Wirechat Blade views when your chat UI needs custom markup, labels, classes, or layout changes beyond panel configuration.
Publishing the Views
Publishing Wirechat's views copies them into your application's resources/views/vendor/wirechat/ directory:
php artisan vendor:publish --tag=wirechat-views
Any matching file in resources/views/vendor/wirechat/ overrides the package view with the same path.
Working With Published Views
Keep view customizations focused on markup and presentation. Put new behavior in a custom Livewire component class, then let the published view call the methods or render the state exposed by that component.
For component identifiers and replacement examples, see Components. For embedding the full chat surface in an application page, see Standalone Widget.