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. [Utility &amp; Helpers](/categories/utility)
4. /
5. jeffersongoncalves/filament-qrcode-field

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

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(4mo ago)165.6k↓21.7%4MITBladePHP ^8.2|^8.3CI passing

Since Apr 20Pushed 6d 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 3d ago

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

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

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

54

—

FairBetter than 96% of packages

Maintenance89

Actively maintained with recent releases

Popularity34

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 74.3% 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 ~15 days

Recently: every ~29 days

Total

29

Last Release

6d 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-04-26

2.x-dev → 3.x-dev2026-06-29

### 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 (107 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (28 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

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k1](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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