xcloud/forumchatter

There is no license information available for the latest version (dev-master) of this package.

A simple forum package for your laravel app with some modification for X-Cloud

Installs: 106

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/xcloud/forumchatter

dev-master 2018-10-18 08:42 UTC

This package is not auto-updated.

Last update: 2025-10-02 21:39:36 UTC


README

X-Cloud Publish the Vendor Assets files by running CHANGE:

```
php artisan vendor:publish 
```

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

```
composer dump-autoload
```

Lastly, run the seed files to seed your database with a little data:

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

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 `</body>` tag of your master file add the following:

```
@yield('js')
```