PHPackages                             bpocallaghan/faq - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. bpocallaghan/faq

ActiveLibrary[Admin Panels](/categories/admin)

bpocallaghan/faq
================

Add Frequently Asked Questions to your laravel admin project - https://github.com/bpocallaghan/laravel-admin-starter

1.0.0(7y ago)149.2k—2.6%71MITPHPPHP &gt;=7.0.0

Since Oct 31Pushed 9mo ago4 watchersCompare

[ Source](https://github.com/bpocallaghan/faq)[ Packagist](https://packagist.org/packages/bpocallaghan/faq)[ RSS](/packages/bpocallaghan-faq/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)DependenciesVersions (7)Used By (1)

Frequently Asked Questions
==========================

[](#frequently-asked-questions)

This will add faq questions and answers to your laravel project. The questions have a 'total views', 'total helpful' and 'total not helpful' counters.

Installation
------------

[](#installation)

Update your project's `composer.json` file.

```
composer require bpocallaghan/faq
```

Usage
-----

[](#usage)

Register the routes in the `routes/vendor.php` file.

- Website

```
Route::group(['prefix' => 'faq', 'namespace' => 'FAQ\Controllers\Website'], function () {
    Route::get('', 'FAQController@index');
    Route::post('/question/{faq}/{type?}', 'FAQController@incrementClick');
});
```

- Admin

```
Route::group(['namespace' => 'FAQ\Controllers\Admin'], function () {
    Route::resource('/faqs/categories', 'CategoriesController');
    Route::get('faqs/order', 'OrderController@index');
    Route::post('faqs/order', 'OrderController@updateOrder');
    Route::resource('/faqs', 'FAQsController');
});
```

Commands
--------

[](#commands)

```
php artisan faq:publish
```

This will copy the `database/seeds` and `database/migrations` to your application. Remember to add `$this->call(FAQTableSeeder::class);` in the `DatabaseSeeder.php`

```
php artisan faq:publish --files=all
```

This will copy the `model, views and controller` to their respective directories. Please note when you execute the above command. You need to update your `routes`.

- Website

```
Route::get('/faq', 'FAQController@index');
Route::post('/faq/question/{faq}/{type?}', 'FAQController@incrementClick');
```

- Admin

```
Route::group(['namespace' => 'FAQ'], function () {
    Route::resource('/faqs/categories', 'CategoriesController');
    Route::get('faqs/order', 'OrderController@index');
    Route::post('faqs/order', 'OrderController@updateOrder');
    Route::resource('/faqs', 'FaqsController');
});
```

Demo
----

[](#demo)

Package is being used at [Laravel Admin Starter](https://github.com/bpocallaghan/laravel-admin-starter) project.

### TODO

[](#todo)

- add the navigation seeder information (to create the navigation/urls)

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance41

Moderate activity, may be stable

Popularity33

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 69.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~283 days

Total

3

Last Release

2600d ago

Major Versions

0.0.2 → 1.0.02019-05-21

### Community

Maintainers

![](https://www.gravatar.com/avatar/7cc52fc6eaeee1d7cbb729f7b7e7fb570754f4d2bb57847e5753f4e1041b7124?d=identicon)[bpocallaghan](/maintainers/bpocallaghan)

---

Top Contributors

[![bpocallaghan](https://avatars.githubusercontent.com/u/883465?v=4)](https://github.com/bpocallaghan "bpocallaghan (9 commits)")[![cblauth](https://avatars.githubusercontent.com/u/79920782?v=4)](https://github.com/cblauth "cblauth (4 commits)")

---

Tags

faqhacktoberfesthacktoberfest-2025laravellaravelcmsadminFAQfrequently asked questions

### Embed Badge

![Health badge](/badges/bpocallaghan-faq/health.svg)

```
[![Health](https://phpackages.com/badges/bpocallaghan-faq/health.svg)](https://phpackages.com/packages/bpocallaghan-faq)
```

###  Alternatives

[serverfireteam/blog

A nice blog system with laravel and laravelpanel

523.1k](/packages/serverfireteam-blog)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
