PHP code example of kodio / chatter-core

1. Go to this page and download the library: Download kodio/chatter-core library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kodio / chatter-core example snippets


    

    namespace App;

    use Chatter\Core\Traits\CanDiscuss;
    use Laravel\Passport\HasApiTokens;
    use Illuminate\Notifications\Notifiable;
    use Illuminate\Foundation\Auth\User as Authenticatable;

    class User extends Authenticatable
    {
        use HasApiTokens, Notifiable, CanDiscuss;
    

    'web' => [
        // Other middleware...
        \Laravel\Passport\Http\Middleware\CreateFreshApiToken::class,
    ],
    
bash
    $ php artisan chatter:install
    
bash
    $ php artisan chatter:install --plugin
    
bash
    $ php artisan serve
    
bash
$ php artisan db:seed --class ChatterTableSeeder