LaravelPackages.net
Acme Inc.
Toggle sidebar
seka19/laravel-forum-frontend

A frontend for riari/laravel-forum providing views written with Bootstrap 3

73
0
2.0.2
About seka19/laravel-forum-frontend

seka19/laravel-forum-frontend is a Laravel package for a frontend for riari/laravel-forum providing views written with bootstrap 3. It currently has 0 GitHub stars and 73 downloads on Packagist (latest version 2.0.2). Install it with composer require seka19/laravel-forum-frontend. Discover more Laravel packages by seka19 or browse all Laravel packages to compare alternatives.

Last updated

This package provides a conventional front-end for seka19/laravel-forum 5.0 and above. It should be installed along with the forum unless a custom or alternative front-end implementation is required.

Complete documentation is available on teamteatime.net.

Installation

Step 1: Install the package

Install the package via composer:

composer require riari/laravel-forum-frontend:~2.0

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

Riari\Forum\Frontend\ForumFrontendServiceProvider::class,

Step 2: Publish the package files

Run the vendor:publish command to publish the package config and views to your app's directories:

php artisan vendor:publish

Additional steps

Once the package is installed, provided you are logged in, you can visit /forum and start defining your category hierarchy using the "Create category" and "Category actions" panels:

Category management example

Configuration

The forum.frontend config file defines the controllers used by the package as well as a closure used to process alert messages to be displayed to the user.

Views

Views are published to resources/views/vendor/forum. The simplest way to integrate the forum with your existing design is to edit the master view, remove undesired markup and make it extend your application's main layout with @extends. Note that the master view does pull in jQuery and Bootstrap 3 by default, and includes some jQuery-based JavaScript to support some of the forum frontend features. You may wish to move it elsewhere or re-write it in your own way.

Events

The package includes a variety of events for user interactions such as viewing threads. Refer to src/Events for a full list.

Star History Chart