2017 © Pedro Peláez
 

project laraforum

forum

image

fsflex/laraforum

forum

  • Thursday, January 12, 2017
  • by nguyenhieptn
  • Repository
  • 2 Watchers
  • 0 Stars
  • 34 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

laraforum

Require

Forum require packages :, (*1)

https://github.com/cviebrock/eloquent-sluggable
https://laravelcollective.com/docs/5.3/html

Installation

First, you'll need to install the package via Composer:, (*2)

$ composer require fsflex/laraforum=dev_master

Then, update config/app.phpp by adding an entry for the service provider., (*3)

'providers' => [
    // ...
    FsFlex\LaraForum\LaraForumServiceProvider::class,
];

Finally, from the command line again, publish the default configuration file:, (*4)

php artisan vendor:publish --provider="FsFlex\LaraForum\LaraForumServiceProvider"

Configuration

By default, global configuration can be set in the config/laraforum.php file. If a configuration isn't set, then the package defaults from vendor/fsflex/laraforum/src/resources/config/laraforum.php are used. Here is an example configuration, with all the default settings shown:, (*5)

return [
    'template' => 'discuss',
    'pagename' => 'LaraForum',
    'basic_title' => 'title forum',
    'basic_description'=>'forum description',
    'url_prefix' => 'laraforum', 
    'admin_username' => 'admin',
    'posts_interval' => 30,//seconds
    'threads_interval' => 300,//seconds
    'threads_paginate' => 20,
    'posts_paginate' =>20,
];

Url to forum home site, (*6)

    Your laravel public //discuss

The Versions

12/01 2017

dev-master

9999999-dev

forum

  Sources   Download

test

The Development Requires

by Avatar vhieu