定制 hamedmehryar/laravel-chat 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

hamedmehryar/laravel-chat

最新稳定版本:1.0.1

Composer 安装命令:

composer require hamedmehryar/laravel-chat

包简介

Chat feature for laravel

README 文档

README

This package will allow you to add a full user messaging system into your Laravel application.

Features

  • Thread based conversation
  • Invite other users to the thread

Common uses

  • Open threads (everyone can see everything)
  • Group messaging (only participants can see their threads)
  • One to one messaging (private or direct thread)

Installation (Laravel 5.x) (installation in not recommended because this is a pre-release package)

In composer.json:

"require": {
    "hamedmehryar/laravel-chat" "0.0.0"
}

Run:

composer update

Add the service provider to config/app.php under providers:

'providers' => [
    Hamedmehryar\Chat\ChatServiceProvider::class,
]

Publish Assets

php artisan vendor:publish --provider="Hamedmehryar\Chat\ChatServiceProvider"

Update config file to reference your User Model:

config/chat.php

Migrate your database:

php artisan migrate

Add the trait to your user model:

use Hamedmehryar\Chat\Traits\Chatable;

class User extends Model {
	use Chatable;
}

Add smiley.css file to your page

<link rel="stylesheet" href="../path/to/your/public/hamedmehryar/chat/smiley.css" >

Note: These examples use the laravelcollective/html package that is no longer included in Laravel 5 out of the box. Make sure you require this dependency in your composer.json file if you intend to use the example files.

Credits

Special Thanks

This package used cmgmyr/laravel-messenger as a starting point.

统计信息

  • 总下载量: 956
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 25
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 25
  • Watchers: 5
  • Forks: 8
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-11-08