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
Requires
- luketowers/purifier: ~3.0
Requires (Dev)
- illuminate/cache: ~5.1.20|5.2.*|5.3.*
- illuminate/console: ~5.1.20|5.2.*|5.3.*
- mockery/mockery: ^0.9.5
- phpunit/phpunit: ~5.7.14
This package is not auto-updated.
Last update: 2025-03-20 19:12:03 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')
```