2017 © Pedro Peláez
 

library simpleforum

simple forum package for Laravel 5.4

image

ozgurince/simpleforum

simple forum package for Laravel 5.4

  • Monday, July 10, 2017
  • by ozgurince
  • Repository
  • 1 Watchers
  • 3 Stars
  • 30 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Simple Forum

Package for Laravel 5.4 demo url: https://simpleforum.000webhostapp.com/ozgurince/simpleforum, (*1)

Features

  • Users can sign up and sign in.
  • Users can show all of forum pages.
  • Members can create conversations with files.
  • Members can reply existing conversations with files.
  • Members can update and delete own comments and posts.
  • Members can like comments.
  • Members can update their informations (name, email. password, profile photo etc.)
  • Admins also has members' permissions.
  • Admins can ban members.

Installation

1.- Download the package, (*2)

composer require ozgurince/simpleforum

2.- After installing this package, you have to set the service provider on your config/app.php file, (*3)

Ozgurince\Simpleforum\SimpleForumServiceProvider::class

3.- Create migrations for the simpleforum, make sure you have a migration already created for users and seed your users and roles tables., (*4)

php artisan migrate

php artisan db:seed --class=Ozgurince\Simpleforum\Seeds\RolesTableSeeder 

php artisan db:seed --class=Ozgurince\Simpleforum\Seeds\UsersTableSeeder

4.- Publish the assests to your public folder., (*5)

php artisan vendor:publish --tag=public --force

5.- Add your $routeMiddleware variable in Kernel.php, (*6)

'admin' => \Ozgurince\Simpleforum\Middleware\AdminMiddleware::class,

6.- Your User model in APP folder must includes functions and $fillable variable of User model of the package, (*7)

Contributing

1.- Fork it 2.- Create your feature branch 3.- Commit your changes 4.- Push to the branch 5.- Create a new Pull Request, (*8)

License

MIT, (*9)

The Versions

10/07 2017

dev-master

9999999-dev

simple forum package for Laravel 5.4

  Sources   Download

MIT

by Ozgur Ince

10/07 2017

1.0.1

1.0.1.0

simple forum package for Laravel 5.4

  Sources   Download

MIT

by Ozgur Ince

08/07 2017

1.0.0

1.0.0.0

simple forum package for Laravel 5.4

  Sources   Download

MIT

by Ozgur Ince