Looking to hire Laravel developers? Try LaraJobs

laravel-forum maintained by vientodigital

Description
A Laravel Forum Package
Author
Last update
2026/01/03 21:49 (dev-main)
License
Downloads
678

Comments
comments powered by Disqus

Laravel Forum Package

Latest Version on Packagist Tests codecov Total Downloads

An easy to integrate forum to your laravel project. Just customize views, migrations routes and you are done.

Requirements

  • PHP ^8.2
  • Laravel 11.x or 12.x
  • Livewire ^3.0

Installation

You can install the package via composer:

composer require vientodigital/laravel-forum

You could publish migrations, views & config

php artisan vendor:publish --provider="Vientodigital\LaravelForum\LaravelForumServiceProvider"

Configuration

//config/laravel-forum.php

/*
 * Customize table table names to your needs
 */
return [
    'table_names' => [
        'settings' => 'settings',
    ]
];

Usage


//routes/web.php

use Vientodigital\LaravelForum\LaravelForumFacade as LaravelForum;

Route::middleware(['auth'])->prefix('forum')->group(function () {
    LaravelForum::routes();
});
//routes/api.php
use Vientodigital\LaravelForum\LaravelForumFacade as LaravelForum;

Route::middleware(['auth'])->prefix('forum')->group(function () {
    LaravelForum::routes();
});

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email victoryoalli@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.