vientodigital / laravel-forum
A Laravel Forum Package
Installs: 603
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 2
Open Issues: 0
Language:Blade
Requires
- php: ^8.1
- illuminate/broadcasting: ^8.0|^9.0
- illuminate/events: ^8.0|^9.0
- illuminate/queue: ^8.0|^9.0
- illuminate/support: ^8.0|^9.0
- livewire/livewire: ^2.0
Requires (Dev)
- orchestra/testbench: ^6.8
- phpunit/phpunit: ^8.4|^9.3.3
This package is auto-updated.
Last update: 2024-10-07 06:57:16 UTC
README
An easy to integrate forum to your laravel project. Just customize views, migrations routes and you are done.
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.