eubby/forum

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

dev-Core 2013-11-13 07:35 UTC

This package is not auto-updated.

Last update: 2024-05-21 00:04:31 UTC


README

  • This forum package is inspired by esotalk developed by @tobscure.

Status: Under Development

How to Install

  • In your app composer.json file, add:
	"require": {
		"eubby/forum": "dev-Core"
	}
  • Configure your database settings in the L4 app/config/database.php file
  • Open your terminal in the L4 App root directory and run php composer.phar update command
  • Add Forum Service Provider to the app/config/app.php file under the array key "providers" as shown below
'providers' => array(
		
		'Eubby\Forum\ForumServiceProvider',

)
  • Please change the default user model in app/config/auth.php to:
'model' => 'Eubby\Models\User',
  • And run the following command in the terminal to start installing the Forum package
  • Please note that this command will ask you to create an admin user account before installing the package
 php artisan forum:install

Frontend

Admin Panel

Documentation will be updated soon