hanishkumar / chatapp

ChatApp 是一个PHP库,旨在简化聊天应用的开发。

1.3 2017-05-20 11:39 UTC

This package is not auto-updated.

Last update: 2024-09-29 02:18:44 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

### 安装

	composer require hanishkumar/chatapp

将以下行添加到 config/app.php 文件的 'providers' 数组中

	Hanish\ChatApp\ChatAppServiceProvider::class,

发布迁移

	php artisan migrate

将断言发布到公共文件夹以安装聊天基础主题

	php artisan vendor:publish

要将聊天框包含在您的母页中,请在所有脚本之后添加

	 @if(!empty(Auth::user()->id))
                        @include('chat::directChat')
            @endif