PHPackages                             mevadakalpesh/chatapp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. mevadakalpesh/chatapp

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

mevadakalpesh/chatapp
=====================

Empower your Laravel applications with real-time chat functionality using mevadakalpesh/chatapp. A seamless and customizable solution for enhancing user communication.

00Blade

Since Jun 10Pushed 1y ago1 watchersCompare

[ Source](https://github.com/mevadakalpesh/livewire-chat)[ Packagist](https://packagist.org/packages/mevadakalpesh/chatapp)[ RSS](/packages/mevadakalpesh-chatapp/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

ChatApp
=======

[](#chatapp)

ChatApp is a simple and flexible chat application package built using LiveWire and Beyond WebSocket. It provides real-time chat functionality for web applications, making it easy to integrate and customize according to your project requirements.

---

Features
--------

[](#features)

- Real-time chat functionality.
- Built with LiveWire for seamless server-side rendering.
- Beyond WebSocket for efficient WebSocket communication.
- Easy integration and customization.

Installation
------------

[](#installation)

You can install the package via composer if this command give error add `:dev-main` at last as a version:

```
composer require mevadakalpesh/chatapp
```

Add This Provider in `Providers` in `config/app.php` after installing the package

```
Mevadakalpesh\ChatApp\ChatAppServiceProviders
```

You can publish the config file with:

```
php artisan vendor:publish --provider="Mevadakalpesh\ChatApp\ChatAppServiceProvider" --tag=chatapp
```

Add this code in your package.json

```
"dependencies": {
		.......

        "emojionearea": "^3.4.2",
        "laravel-echo": "^1.15.3",
        "pusher-js": "^8.4.0-rc2"

        .......
}
```

after adding this,run this command

```
npm install
```

after that make a model by run this command

```
php artisan make:model Message
```

and replace this code in the Message model

```
