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

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

This package is not auto-updated.

Last update: 2024-04-18 14:59:33 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')
```