Download the PHP package codiiv/chatteradmin without Composer
On this page you can find all versions of the php package codiiv/chatteradmin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download codiiv/chatteradmin
More information about codiiv/chatteradmin
Files in codiiv/chatteradmin
Package chatteradmin
Short Description A package to provide extended functionality for the beautiful thedevdojo/chatter forums for Laravel
License MIT
Homepage https://github.com/codiiv/chatteradmin
Informations about the package chatteradmin
Laravel Forum Package - Chatter
Installation
Quick Note: This is package builds upon the Laravel forum package. Therefore, make sure you install it and configure it as needed. https://github.com/thedevdojo/chatter#installation
Also, this package is tested on Laravel 5.7 so far. It could work with 5.6 and 5.5, but I haven't done the necessary tests
-
Include the package in your project
-
Add the service provider to your
config/app.php
providers array:If you're installing on Laravel 5.5+ skip this step
-
Publish the Vendor Assets files by running:
-
Now that we have published a few new files to our application we need to reload them with the following command:
-
Run Your migrations:
NB: It is important to run the migrations so that you can set the super admin and other future features. This migration will create two additional tables on top of the ones created by the main
thedevdojo/chatter
Quick tip: Make sure that you've created a database and added your database credentials in your
.env
file. -
Lastly, CONFIGURE SUPER ADMIN account.
You can do this two ways
A) Run this command
php artisan chatter:superadmin [email protected]
replacing [email protected] by the email of the user you want to set as super admin. Note that you can only have one super admin.IN a future version, we will add ability to have multiple admins, but the
super admin
role will remain one userOR
B) - Once you have run , look for the table and add a row with the following column values:
Now, visit your and you should see your new forum admin once logged in!
Upgrading
Coming soon