PHPackages                             jeffersongoncalves/filament-qrcode-field - 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. jeffersongoncalves/filament-qrcode-field

ActiveLibrary

jeffersongoncalves/filament-qrcode-field
========================================

A Laravel Filament package that provides QR Code field functionality for your web applications. This package extends Filament v3 with a simple QR code input component.

3.0.4(2mo ago)113.2k—7.5%4MITBladePHP ^8.2|^8.3CI passing

Since Apr 20Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/jeffersongoncalves/filament-qrcode-field)[ Packagist](https://packagist.org/packages/jeffersongoncalves/filament-qrcode-field)[ Docs](https://github.com/jeffersongoncalves/filament-qrcode-field)[ RSS](/packages/jeffersongoncalves-filament-qrcode-field/feed)WikiDiscussions 3.x Synced 1mo ago

READMEChangelog (10)Dependencies (10)Versions (30)Used By (0)

[![Filament Qrcode Field](https://raw.githubusercontent.com/jeffersongoncalves/filament-qrcode-field/3.x/art/jeffersongoncalves-filament-qrcode-field.jpg)](https://raw.githubusercontent.com/jeffersongoncalves/filament-qrcode-field/3.x/art/jeffersongoncalves-filament-qrcode-field.jpg)

Filament QrCode Field
=====================

[](#filament-qrcode-field)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7da213f13b2e23cda015dee6226c9578b61019746cebe17abab16fec16416e4c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7172636f64652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-qrcode-field)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/f007052abd49193b4c3d03ff7d3a67e8ade9f5eb37e04b1447b4106872f7d99d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7172636f64652d6669656c642f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d6173746572266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/jeffersongoncalves/filament-qrcode-field/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3A2.x)[![Total Downloads](https://camo.githubusercontent.com/069809ed72f71efb1301f0eedf06bbad49e48ed8a4e045b5ef5937a912be1609/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7172636f64652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-qrcode-field)[![License](https://camo.githubusercontent.com/724b9ac4f1f7457e7eff9ad447415cd251889ae2f48f37812bc909afbb28aa9b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7172636f64652d6669656c642e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

A Laravel Filament package that provides QR Code field functionality for your web applications. This package extends Filament v4 with a simple QR code input component.

Compatibility
-------------

[](#compatibility)

Package VersionFilament Version[1.x](https://github.com/jeffersongoncalves/filament-qrcode-field/tree/1.x)3.x[2.x](https://github.com/jeffersongoncalves/filament-qrcode-field/tree/2.x)4.x[3.x](https://github.com/jeffersongoncalves/filament-qrcode-field/tree/3.x)5.xRequirements
------------

[](#requirements)

- PHP 8.2 or higher
- Filament 5.0

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

[](#installation)

You can install the package via composer:

```
composer require jeffersongoncalves/filament-qrcode-field:^3.0
```

You can publish the config file with:

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

This is the contents of the published config file:

```
use Filament\Support\Enums\Width;

return [
    'asset_js' => 'https://unpkg.com/html5-qrcode@2.3.8/html5-qrcode.min.js',
    'modal' => [
        'width' => Width::Large,
    ],
    'reader' => [
        'width' => '600px',
        'height' => '600px',
    ],
    'scanner' => [
        'fps' => 10,
        'width' => 250,
        'height' => 250,
    ],
];
```

Translations
------------

[](#translations)

This package supports multiple languages. The following languages are currently available:

- Arabic (`ar`)
- Czech (`cs`)
- German (`de`)
- English (`en`)
- Spanish (`es`)
- Persian (`fa`)
- French (`fr`)
- Hebrew (`he`)
- Indonesian (`id`)
- Italian (`it`)
- Japanese (`ja`)
- Dutch (`nl`)
- Polish (`pl`)
- Portuguese (`pt`)
- Portuguese (Brazil) (`pt_BR`)
- Portuguese (Portugal) (`pt_PT`)
- Slovak (`sk`)
- Turkish (`tr`)

If you want to customize the translations, you can publish the language files:

```
php artisan vendor:publish --tag=filament-qrcode-field-translations
```

Usage
-----

[](#usage)

Once installed, you can use the QrCodeInput component in your Filament forms:

```
use JeffersonGoncalves\Filament\QrCodeField\Forms\Components\QrCodeInput;

// In your form definition
QrCodeInput::make('qrcode')
    ->required(),
```

Development
-----------

[](#development)

You can run code analysis and formatting using the following commands:

```
# Run static analysis
composer analyse

# Format code
composer format
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Jèfferson Gonçalves](https://github.com/jeffersongoncalves)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance88

Actively maintained with recent releases

Popularity31

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 79.5% 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 ~12 days

Recently: every ~6 days

Total

29

Last Release

53d ago

Major Versions

1.2.1 → 3.0.22026-02-24

1.2.2 → 2.2.32026-03-04

2.2.3 → 3.0.42026-03-04

1.x-dev → 2.x-dev2026-03-06

2.x-dev → 3.x-dev2026-03-27

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/411493?v=4)[Jefferson Gonçalves](/maintainers/jeffersongoncalves)[@jeffersongoncalves](https://github.com/jeffersongoncalves)

---

Top Contributors

[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (89 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (14 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")[![wrsbyte](https://avatars.githubusercontent.com/u/61599129?v=4)](https://github.com/wrsbyte "wrsbyte (2 commits)")[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (1 commits)")

---

Tags

filamentfilament-formfilament-plugininputlaravelqrcodeqrcode-readerqrcode-scannerreaderlaravelfilamentjeffersongoncalvesfilament-qrcode-field

###  Code Quality

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/jeffersongoncalves-filament-qrcode-field/health.svg)

```
[![Health](https://phpackages.com/badges/jeffersongoncalves-filament-qrcode-field/health.svg)](https://phpackages.com/packages/jeffersongoncalves-filament-qrcode-field)
```

###  Alternatives

[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)[jeffersongoncalves/filament-topbar

A simple yet effective Filament plugin that automatically adds a customized topbar to your Filament admin panel. This plugin enhances your Filament panel's user experience by replacing the default topbar component with an improved version that displays navigation and user interface elements in strategic locations.

171.2k](/packages/jeffersongoncalves-filament-topbar)[tapp/filament-webhook-client

Add a Filament resource and a policy for Spatie Webhook client

1120.2k](/packages/tapp-filament-webhook-client)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)

PHPackages © 2026

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