定制 vientodigital/laravel-forum 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

vientodigital/laravel-forum

最新稳定版本:4.0.0

Composer 安装命令:

composer require vientodigital/laravel-forum

包简介

A Laravel Forum Package

README 文档

README

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.

统计信息

  • 总下载量: 614
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-01-14