2017 © Pedro Peláez
 

library chatkun

image

nattaponra/chatkun

  • Tuesday, July 3, 2018
  • by apsotus
  • Repository
  • 1 Watchers
  • 3 Stars
  • 26 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 9 Versions
  • 53 % Grown

The README.md

chatkun

Install library with composer.

Install Package with Composer You can use composer to install chatkun package follow below command., (*1)

composer require nattaponra/chatkun

1.Add Service Provider

 'providers' => [

        /*
         * Laravel Framework Service Providers...
         */
         .
         .
         .
         .
         nattaponra\chatkun\ChatKunServiceProvider::class,

 ```
## 2.Add trait in User model
Execute the vendor:publish command to create config file in your project:

php artisan vendor:publish --provider=ChatKunServiceProvider, (*2)


## 3.Using ```php $user1 = User::find(1); $user2 = User::find(2); $room = ChatKun::createRoom("Our Room"); ChatKun::addMember($user1,$room); ChatKun::addMember($user2,$room); ChatKun::send($user1,$room,"message","hi!! user2"); ChatKun::send($user2,$room,"message","hi!! user1"); ChatKun::send($user1,$room,"image","http://pwtthemes.com/demo/hannari/wp-content/uploads/2013/03/unicorn-wallpaper.jpg"); $results = ChatKun::history(1,10); foreach ($results as $result){ if($result->message_type == "image"){ echo "User:".$result->user_id." Say that <img src='$result->message_content'><br>"; }else{ echo "User:".$result->user_id." Say that ".$result->message_content."<br>"; } }

The Versions

03/07 2018

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nattapon Rakthong

28/06 2018

2.1.3

2.1.3.0

  Sources   Download

The Requires

 

The Development Requires

by Nattapon Rakthong

24/06 2018

2.1.2

2.1.2.0

  Sources   Download

The Requires

 

The Development Requires

by Nattapon Rakthong

16/02 2018

2.1.1

2.1.1.0

  Sources   Download

The Requires

 

The Development Requires

by Nattapon Rakthong

22/05 2017

2.1.0

2.1.0.0

Laravel package for make sample chat application with Ratchet WebSockets

  Sources   Download

The Requires

 

by Nattapon Rakthong

15/05 2017

dev-apsotus-patch-1

dev-apsotus-patch-1

Laravel package for make sample chat application with Ratchet WebSockets

  Sources   Download

The Requires

 

by Nattapon Rakthong

15/05 2017

1.1.0

1.1.0.0

Laravel package for make sample chat application with Ratchet WebSockets

  Sources   Download

The Requires

 

by Nattapon Rakthong

15/05 2017

2.0.0

2.0.0.0

Laravel package for make sample chat application with Ratchet WebSockets

  Sources   Download

The Requires

 

by Nattapon Rakthong

15/05 2017

1.0.0

1.0.0.0

  Sources   Download

by John Doe