PHPackages                             tapp/filament-survey - 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. tapp/filament-survey

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

tapp/filament-survey
====================

Filament Laravel Survey plugin.

v4.0.0(9mo ago)3119.2k↓45.7%13[2 PRs](https://github.com/TappNetwork/filament-survey/pulls)MITPHPPHP ^8.2CI passing

Since Aug 7Pushed 6mo ago4 watchersCompare

[ Source](https://github.com/TappNetwork/filament-survey)[ Packagist](https://packagist.org/packages/tapp/filament-survey)[ Docs](https://github.com/TappNetwork/filament-survey)[ RSS](/packages/tapp-filament-survey/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (7)Dependencies (6)Versions (13)Used By (0)

Filament Laravel Survey
=======================

[](#filament-laravel-survey)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d66a7287b17ccd3eed653eefdc83e4ba977e21a39cdf7fc2fcd6f689d94816e0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f746170702f66696c616d656e742d7375727665792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-survey)[![Code Style Action Status - Pint](https://github.com/TappNetwork/filament-survey/actions/workflows/pint.yml/badge.svg)](https://github.com/TappNetwork/filament-survey/actions/workflows/pint.yml/badge.svg)[![Total Downloads](https://camo.githubusercontent.com/39d59d6ff1803191776fea75a9e6dbacc801ff6eea09204602f121da0bbcae13/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746170702f66696c616d656e742d7375727665792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-survey)

A Filament plugin for [Laravel Survey](https://github.com/matt-daneshvar/laravel-survey) package.

This package provides Filament resources for [Laravel Survey](https://github.com/matt-daneshvar/laravel-survey).

Requirements
------------

[](#requirements)

- PHP 8.1+
- Laravel 10.0+
- [Filament 3.0+](https://github.com/laravel-filament/filament)

Dependencies
------------

[](#dependencies)

- [maatwebsite/excel](https://github.com/SpartnerNL/Laravel-Excel)
- [matt-daneshvar/laravel-survey](https://github.com/matt-daneshvar/laravel-survey)
- [spatie/eloquent-sortable](https://github.com/spatie/eloquent-sortable)

### Version Compatibility

[](#version-compatibility)

FilamentFilament Survey2.x2.x3.x3.x4.x4.xInstallation
------------

[](#installation)

### Installing the required package (Laravel Survey)

[](#installing-the-required-package-laravel-survey)

This plugin uses a modifed version of [Laravel Survey](https://github.com/matt-daneshvar/laravel-survey) package:  that adds translatable and sortable fields to the survey models. More details in this PR: [matt-daneshvar/laravel-survey#39](https://github.com/matt-daneshvar/laravel-survey/pull/39).

So you must install this version instead of requiring `matt-daneshvar/laravel-survey`. In order to do so, add to your project's `composer.json`:

```
"require": {
    ...
    "matt-daneshvar/laravel-survey": "dev-translatable",
},

"repositories": [
    ...
    {
        "type": "vcs",
        "url": "https://github.com/TappNetwork/laravel-survey"
    }
],
```

Install it using Composer

```
composer update
```

Publish the package migrations

```
php artisan vendor:publish --provider="MattDaneshvar\Survey\SurveyServiceProvider" --tag="migrations"
```

Run the migrations

```
php artisan migrate
```

### Installing the Filament Survey plugin

[](#installing-the-filament-survey-plugin)

### Installation

[](#installation-1)

You can install the package via Composer:

#### For Filament 4

[](#for-filament-4)

> **Note**For **Filament 4.x** check the **[4.x](https://github.com//TappNetwork/filament-survey/tree/4.x)** branch

#### For Filament 3

[](#for-filament-3)

Install the plugin via Composer:

```
composer require tapp/filament-survey:"^3.0"
```

#### For Filament 2

[](#for-filament-2)

> **Note**For **Filament 2.x** check the **[2.x](https://github.com//TappNetwork/filament-survey/tree/2.x)** branch

#### Optional: Publish the plugin's views, translations, and config

[](#optional-publish-the-plugins-views-translations-and-config)

You can publish the view file with:

```
php artisan vendor:publish --tag="filament-survey-views"
```

You can publish the translations files with:

```
php artisan vendor:publish --tag="filament-survey-translations"
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-survey-config"
```

### Adding the plugin to a panel

[](#adding-the-plugin-to-a-panel)

Add this plugin to a panel on `plugins()` method (e.g. in `app/Providers/Filament/AdminPanelProvider.php`). This plugin requires the [Spatie Translatable plugin](https://filamentphp.com/plugins/filament-spatie-translatable), so it should also be added on a panel like so:

```
use Filament\SpatieLaravelTranslatablePlugin;
use Tapp\FilamentSurvey\FilamentSurveyPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugins([
            FilamentSurveyPlugin::make(),
            SpatieLaravelTranslatablePlugin::make(),
            //...
        ]);
}
```

That's it! Now the surveys, answers, and entries resources will be displayed in the left sidebar in your Filament admin panel. To enable dedicated resources for Sections, and Questions, publish the config and add QuestionResource and SectionResource to the 'resources' array.

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance62

Regular maintenance activity

Popularity40

Moderate usage in the ecosystem

Community17

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 84.4% 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 ~101 days

Recently: every ~193 days

Total

9

Last Release

207d ago

Major Versions

v2.0.0 → v3.0.02023-08-08

v3.1.0 → v4.0.02025-08-14

v3.1.1 → 4.x-dev2025-10-24

PHP version history (3 changes)2.x-devPHP ^8.0

v3.0.0PHP ^8.1

v4.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/d72a8c345b7f4205dc1edaff8d05ce78f7fe1ec93dce0e52d29f18e885508d4f?d=identicon)[tapp](/maintainers/tapp)

![](https://www.gravatar.com/avatar/5d0402fb770bca016dd6ee6a925501e0224783f1e5907788aee0ba7bc31c01ee?d=identicon)[andreiabohner](/maintainers/andreiabohner)

---

Top Contributors

[![andreia](https://avatars.githubusercontent.com/u/38911?v=4)](https://github.com/andreia "andreia (27 commits)")[![johnwesely](https://avatars.githubusercontent.com/u/29612767?v=4)](https://github.com/johnwesely "johnwesely (4 commits)")[![swilla](https://avatars.githubusercontent.com/u/304159?v=4)](https://github.com/swilla "swilla (1 commits)")

---

Tags

hacktoberfestlaravelfilamentsurveytapp network

### Embed Badge

![Health badge](/badges/tapp-filament-survey/health.svg)

```
[![Health](https://phpackages.com/badges/tapp-filament-survey/health.svg)](https://phpackages.com/packages/tapp-filament-survey)
```

###  Alternatives

[tapp/filament-form-builder

User facing form builder using Filament components

131.2k1](/packages/tapp-filament-form-builder)[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)[tapp/filament-auditing

Filament Laravel Auditing plugin.

113379.4k2](/packages/tapp-filament-auditing)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)

PHPackages © 2026

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