PHPackages                             kodio/chatter-core - 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. kodio/chatter-core

ActiveLibrary

kodio/chatter-core
==================

A simple forum package for your laravel app

6.1.1(4y ago)04MITPHP

Since Nov 19Pushed 4y agoCompare

[ Source](https://github.com/Kodio-Tech/core)[ Packagist](https://packagist.org/packages/kodio/chatter-core)[ RSS](/packages/kodio-chatter-core/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (16)Versions (20)Used By (0)

[![](https://raw.githubusercontent.com/chatter-laravel/core/master/public/assets/images/logo.png)](https://raw.githubusercontent.com/chatter-laravel/core/master/public/assets/images/logo.png)

[![Build status](https://camo.githubusercontent.com/3bdc6997291af69f207da1e385231fd0a22d21ddd2a1b9845fbfef651333beec/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f373534383938362f736869656c643f7374796c653d666c6174)](https://camo.githubusercontent.com/3bdc6997291af69f207da1e385231fd0a22d21ddd2a1b9845fbfef651333beec/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f373534383938362f736869656c643f7374796c653d666c6174)[![Maintained repository](https://camo.githubusercontent.com/5ca62441414bacaa54c6c6e5b68e46c76305947b6bf498c4949fc71c1b4b10dd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d61696e7461696e65642533462d7965732d677265656e2e737667)](https://camo.githubusercontent.com/5ca62441414bacaa54c6c6e5b68e46c76305947b6bf498c4949fc71c1b4b10dd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d61696e7461696e65642533462d7965732d677265656e2e737667)[![MIT License](https://camo.githubusercontent.com/08cef40a9105b6526ca22088bc514fbfdbc9aac1ddbf8d4e6c750e3a88a44dca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d626c75652e737667)](https://github.com/Chatter-Laravel/core/blob/master/license)

Chatter - Laravel Forum Package
===============================

[](#chatter---laravel-forum-package)

This is a Vue + Tailwind CSS + Laravel forum package. Chatter is a single page application to create forums on Laravel applications with ease.

**[See the youtube demo](https://youtu.be/HIaEsMWBV28)**

*This package is inspired on the [thedevdojo/chatter](https://github.com/thedevdojo/chatter) package*

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

[](#installation)

If you are planning to install Chatter on an already existing project, please check the ChatterPreset class and check which of the instalations steps you need to run, really dependes on what you got.

Chatter BranchChatter VersionLaravel version5.x^5.8^5.86.x^6^6masterdev-master^71. Install [Laravel 7](https://laravel.com/docs/7.x/installation#installing-laravel), If you are installing Chatter in an existing project skip this step.
2. Include the package in your project and publish the package views, configs, etc:

    ```
    $ composer require "chatter-laravel/core:^6"
    $ php artisan vendor:publish --provider "Chatter\\Core\\ChatterServiceProvider"
    $ composer dump-autoload
    ```
3. Run the install command and follow the instructions:

    ```
    $ php artisan chatter:install
    ```

    If you are installing Chatter in an existing project, include the *--plugin* option when you call the install command:

    ```
    $ php artisan chatter:install --plugin
    ```

    The installation command will take care of all that you need to install the forum: migrations, js components, tailwind, composer packages, node packages, etc.
4. Add the CanDiscuss and HasApiTokens trait to your *User model*. If you have Laravel Passport already installed on your project you probably already have the HasApiTokens trait in your *User model*:

    ```
