PHPackages                             nikunjkumar.kabariya/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. [Utility &amp; Helpers](/categories/utility)
4. /
5. nikunjkumar.kabariya/faq

ActiveProject-bundle[Utility &amp; Helpers](/categories/utility)

nikunjkumar.kabariya/faq
========================

FAQ Management

01.7kPHP

Since Feb 2Pushed 8y ago1 watchersCompare

[ Source](https://github.com/nikunjkabariya/faq-pack)[ Packagist](https://packagist.org/packages/nikunjkumar.kabariya/faq)[ RSS](/packages/nikunjkumarkabariya-faq/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

FAQ Package APIs with Lumen 5.5
===============================

[](#faq-package-apis-with-lumen-55)

Installation &amp; Usage
========================

[](#installation--usage)

You can install the package via Composer:

```
composer require nikunjkumar.kabariya/faq

```

Run

```
composer dump-autoload --optimize

```

Create blank config folder on root of your application if not exist.

Copy the required files:

```
cp vendor/nikunjkumar.kabariya/faq/src/config/faq.php config/faq.php
cp vendor/nikunjkumar.kabariya/faq/src/routes/routes.php routes/faq.php

```

Modify the bootstrap flow (bootstrap/app.php file) &amp; Register service provider

```
// Enable Facades
$app->withFacades();

// Enable Eloquent
$app->withEloquent();

```

```
$app->register(Nikunjkabariya\Faq\FaqServiceProvider::class);
```

Now, run your migrations:

```
php artisan migrate

```

Installed routes
================

[](#installed-routes)

This package mounts the following routes after you call routes() method (see instructions below):

VerbPathNamedRouteControllerActionMiddlewareGET/api/faq/list\\NikunjKabariya\\Faq\\FaqControllerindexadmin\_apiGET/api/faq/show/{id}\\NikunjKabariya\\Faq\\FaqControllershowadmin\_apiPOST/api/faq/create\\NikunjKabariya\\Faq\\FaqControllerstoreadmin\_apiDELETE/api/faq/delete/{id}\\NikunjKabariya\\Faq\\FaqControllerdestroyadmin\_apiPUT/api/faq/update/{id}\\NikunjKabariya\\Faq\\FaqControllerupdateadmin\_apiPUT/api/faq/change\_status\\NikunjKabariya\\Faq\\FaqControllerchangeStatusadmin\_apiGET/api/faq\_topic/list\\NikunjKabariya\\Faq\\FaqControllerfaqTopicList-GET/api/faqs/{faqTopicSlug}\\NikunjKabariya\\Faq\\FaqControllergetAllFaqsByFaqTopic-Extend / Add new fields
=======================

[](#extend--add-new-fields)

Copy these files in your application if not exist:

- config/faq.php
- routes/faq.php
- create new migration file in your application, for ex.:

    ```
    php artisan make:migration add_featured_image_in_faqs_table --table=faqs

    ```

    then, run this command

    ```
    php artisan migrate

    ```
- If you want to keep validation for new fields, you can do it in your application's faq config file,

    ```
    config/faq.php file

    ```
- You can modify package's route in your application's faq route file, you can add/change prefix, groups, namespace, middleware etc. If you override method in controller then make sure to change namespace for that particular route in this file.

    ```
    routes/faq.php file

    ```
- If you want to override any existing method or want to create new method, you can do it by extending FaqController.php from your application's new controller. for ex.:

    ```
    use Nikunjkabariya\Faq\FaqController as FaqControllerPackage;
    class FaqController extends FaqControllerPackage {}
    ```

    You can also override / create new method by extending Faq.php model file from your application's new model. for ex.:

    ```
    use Nikunjkabariya\Faq\Faq as FaqModel;
    class Faq extends FaqModel {}
    ```

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/1960eefe9cba0c9a0645b9c382681aca9f70d7cd42e171cf441c8234887dbcfe?d=identicon)[nikunjkabariya](/maintainers/nikunjkabariya)

---

Top Contributors

[![nikunjkabariya](https://avatars.githubusercontent.com/u/6835975?v=4)](https://github.com/nikunjkabariya "nikunjkabariya (1 commits)")

---

Tags

faqlaravellaravel-5-packagelumenlumen-packagephp

### Embed Badge

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

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

###  Alternatives

[laravel-enso/forms

JSON-based form builder for Laravel Enso

12354.2k85](/packages/laravel-enso-forms)

PHPackages © 2026

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