All Projects → Team-Tea-Time → Laravel Forum

Team-Tea-Time / Laravel Forum

Licence: mit
A minimal forum package designed for quick and easy integration in Laravel projects

Projects that are alternatives of or similar to Laravel Forum

Flarum
Simple forum software for building great communities.
Stars: ✭ 12,190 (+3538.81%)
Mutual labels:  forum, laravel
Hifone
A free, open-source, self-hosted forum software based on the Laravel PHP Framework. QQ群:656868
Stars: ✭ 673 (+100.9%)
Mutual labels:  forum, laravel
Core
Simple forum software for building great communities.
Stars: ✭ 5,372 (+1503.58%)
Mutual labels:  forum, laravel
Voten
The code that powers voten.co
Stars: ✭ 1,215 (+262.69%)
Mutual labels:  forum, laravel
Flarum
Flarum - 优雅自由的 PHP 轻社区
Stars: ✭ 1,588 (+374.03%)
Mutual labels:  forum, laravel
Laravel Reddit
Reddit clone built with Laravel 5
Stars: ✭ 101 (-69.85%)
Mutual labels:  forum, laravel
Api.yike.io
一刻社区后端 API 源码
Stars: ✭ 1,004 (+199.7%)
Mutual labels:  forum, laravel
Forum
A fully-fledged modern forum app, including @mention and private messaging, built with Laravel 5.3 and Vue 2.
Stars: ✭ 135 (-59.7%)
Mutual labels:  forum, laravel
Forum
Ama Laravel? Torne se um Jedi e Ajude outros Padawans
Stars: ✭ 233 (-30.45%)
Mutual labels:  forum, laravel
Entity Builder
🍅 Laravel code generator with GUI
Stars: ✭ 321 (-4.18%)
Mutual labels:  laravel
Generator
Laravel 5.3+ Scaffold Generator, Support both bootstrap and Semantic UI
Stars: ✭ 327 (-2.39%)
Mutual labels:  laravel
Jwt Auth Guard
JWT Auth Guard for Laravel and Lumen Frameworks.
Stars: ✭ 319 (-4.78%)
Mutual labels:  laravel
Admin
laravel + ant design vue 权限后台
Stars: ✭ 319 (-4.78%)
Mutual labels:  laravel
Awesome Laravel Education
A curated list of resources for learning about the Laravel PHP Framework
Stars: ✭ 327 (-2.39%)
Mutual labels:  laravel
L5scaffold
Scaffold generator for Laravel 5.x
Stars: ✭ 320 (-4.48%)
Mutual labels:  laravel
Scout Extended
Scout Extended: The Full Power of Algolia in Laravel
Stars: ✭ 330 (-1.49%)
Mutual labels:  laravel
Awesome Spark
Curated list of Laravel Spark ressources
Stars: ✭ 319 (-4.78%)
Mutual labels:  laravel
Laravel Media
Attach files to eloquent models
Stars: ✭ 319 (-4.78%)
Mutual labels:  laravel
Laravel Glide
Easily convert images with Glide
Stars: ✭ 333 (-0.6%)
Mutual labels:  laravel
Jetstrap
A Laravel 8 package to easily switch TailwindCSS resources generated by Laravel Jetstream and Breeze to Bootstrap 4.
Stars: ✭ 320 (-4.48%)
Mutual labels:  laravel

Scrutinizer Code Quality

Complete documentation is available on teamteatime.net.

NOTE: Version 3.0 is no longer supported. If you're using a version of Laravel below 5.3, consider upgrading it!

Requirements

  • PHP 5.4 or above
  • Laravel 5.3 or above

Installation

Step 1: Install the package

Install the package via composer:

composer require riari/laravel-forum:~4.0

Then add the service provider to your config/app.php:

Riari\Forum\ForumServiceProvider::class,

Installing the standard front-end is recommended:

composer require riari/laravel-forum-frontend:~1.0
Riari\Forum\Frontend\ForumFrontendServiceProvider::class,

Step 2: Publish the package files

Run the vendor:publish command to publish the package config, translations and migrations to your app's directories:

php artisan vendor:publish

Step 3: Update your database

Run your migrations:

php artisan migrate

Additional steps

Server configuration

If you installed Xdebug before version 2.3, you may need to modify xdebug.max_nesting_level. The suggested and new default value from version 2.3 onwards is 256.

Configuration

Several configuration files are published to your application's config directory, each prefixed with forum.. Refer to these for a variety of options for changing the behaviour of the forum and how it integrates with key parts of your application code.

You may need to modify the forum.integration.user_name config option according to your user model. This specifies which attribute on the user model should be used as a display name in the forum views.

Translations

Laravel Forum currently supports 11 languages: German, English, Spanish, French, Italian, Romanian, Russian, Turkish, Serbian, Portuguese (Brazil) and Swedish. The translation files are published to resources/lang/vendor/forum/{locale}. Please be aware that much of the translation work in 3.0 has been done using Google Translate and probably isn't accurate. Pull requests are welcome to rectify this.

Policies (user permissions)

Permissions in 3.0 are handled via the Authorization features introduced in Laravel 5.1.11. Refer to src/Policies for a full list of policies. To override methods in a policy, just create a class extension for it somewhere in your application and change the corresponding namespace specified in the forum.integration.policies config array. You'll likely want to do this for the ForumPolicy and CategoryPolicy as a minimum to prevent your regular users from managing categories and threads!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].