PHPackages                             laravel2580/chat - 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. [Admin Panels](/categories/admin)
4. /
5. laravel2580/chat

ActiveLibrary[Admin Panels](/categories/admin)

laravel2580/chat
================

A simple forum package for your laravel app

0.1.19(9y ago)220PHP

Since Aug 18Pushed 9y agoCompare

[ Source](https://github.com/laravel2580/chat)[ Packagist](https://packagist.org/packages/laravel2580/chat)[ RSS](/packages/laravel2580-chat/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (21)Used By (0)

Chatter
=======

[](#chatter)

[![Build Status](https://camo.githubusercontent.com/db36b1f563e937e5a6b2b610606d5062d3a7469a434ae64bf66f6128611dc592/68747470733a2f2f7472617669732d63692e6f72672f746865646576646f6a6f2f636861747465722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/thedevdojo/chatter)[![Built For Laravel](https://camo.githubusercontent.com/5dc33dc453936987e8423b2e93ebdb1955ecc7187cc664824ca4a957aecb85c2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6275696c74253230666f722d6c61726176656c2d626c75652e737667)](http://laravel.com)

[![](https://raw.githubusercontent.com/thedevdojo/chatter/master/public/assets/images/chatter.jpg)](https://raw.githubusercontent.com/thedevdojo/chatter/master/public/assets/images/chatter.jpg)

### Installation

[](#installation)

Quick Note: If this is a new project, make sure to insall the default user authentication provided with Laravel. `php artisan make:auth`

1. Include the package in your project

    ```
    composer require "devdojo/chatter=0.1.*"

    ```
2. Add the service provider to your `config/app.php` providers array:

    ```
    DevDojo\Chatter\ChatterServiceProvider::class,

    ```
3. Publish the Vendor Assets files by running:

    ```
    php artisan vendor:publish

    ```
4. Now that we have published a few new files to our application we need to reload them with the following command:

    ```
    composer dump-autoload

    ```
5. Run Your migrations:

    ```
    php artisan migrate

    ```

    Quick tip: Make sure that you've created a database and added your database credentials in your `.env` file.
6. Lastly, run the seed files to seed your database with a little data:

    ```
    php artisan db:seed --class=ChatterTableSeeder

    ```
7. Inside of your master.blade.php file include a header and footer yield. Inside the head of your master or app.blade.php add the following:

    ```
    @yield('css')

    ```

    Then, right above the `` tag of your master file add the following:

    ```
    @yield('js')

    ```

Now, visit your site.com/forums and you should see your new forum in front of you!

### VIDEOS

[](#videos)

[Introduction and Installation of Chatter](https://devdojo.com/episode/create-a-laravel-forum)

### Configuration

[](#configuration)

When you published the vendor assets you added a new file inside of your `config` folder which is called `config/chatter.php`. This file contains a bunch of configuration you can use to configure your forums

### Customization

[](#customization)

*CUSTOM CSS*

If you want to add additional style changes you can simply add another stylesheet at the end of your `@yield('css')` statement in the head of your master file. In order to only load this file when a user is accessing your forums you can include your stylesheet in the following `if` statement:

```
@if(Request::is( Config::get('chatter.routes.home') ) || Request::is( Config::get('chatter.routes.home') . '/*' ))

@endif

```

*SEO FRIENDLY PAGE TITLES*

Since the forum uses your master layout file, you will need to include the necessary code in order to display an SEO friendly title for your page. The following code will need to be added to the `` of your master file:

```
@if( Request::is( Config::get('chatter.routes.home')) )
    Title for your forum homepage -  Website Name
@elseif( Request::is( Config::get('chatter.routes.home') . '/*' ) && isset($discussion->title))
    {{ $discussion->title }} - Website Name
@endif

```

### Custom Function Hooks for the forum

[](#custom-function-hooks-for-the-forum)

Sometimes you may want to add some additional functionality when a user creates a new discussion or adds a new response. Well, there are a few built in functions that you can create in your script to access this functionality:

*Before User Adds New Discussion*Create a new global function in your script called:

```
function chatter_before_new_discussion($request, $validator){}

```

Note: that the `$request` object is passed with the user input for each webhook. You can use it if you would like :) If not, no worries just add your custom functionality.

*After User Adds New Discussion*Create a new global function in your script called:

```
function chatter_after_new_discussion($request){}

```

*Before User Adds New Response*Create a new global function in your script called:

```
function chatter_before_new_response($request, $validator){}

```

*After User Adds New Response*Create a new global function in your script called:

```
function chatter_after_new_response($request){}

```

### Screenshots

[](#screenshots)

[![](https://raw.githubusercontent.com/thedevdojo/chatter/master/public/assets/images/chatter-screenshot.jpg)](https://raw.githubusercontent.com/thedevdojo/chatter/master/public/assets/images/chatter-screenshot.jpg)

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 97.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

20

Last Release

3599d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c2f8824805ec65681aeeb22380d22392d978e0dc2c38cf42ff32c0091a49a987?d=identicon)[laravel2580](/maintainers/laravel2580)

---

Top Contributors

[![tnylea](https://avatars.githubusercontent.com/u/601261?v=4)](https://github.com/tnylea "tnylea (46 commits)")[![laravel2580](https://avatars.githubusercontent.com/u/20704900?v=4)](https://github.com/laravel2580 "laravel2580 (1 commits)")

### Embed Badge

![Health badge](/badges/laravel2580-chat/health.svg)

```
[![Health](https://phpackages.com/badges/laravel2580-chat/health.svg)](https://phpackages.com/packages/laravel2580-chat)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
