PHPackages                             linkxtr/laravel-qrcode - 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. [Payment Processing](/categories/payments)
4. /
5. linkxtr/laravel-qrcode

ActiveLibrary[Payment Processing](/categories/payments)

linkxtr/laravel-qrcode
======================

A clean, modern, and easy-to-use QR code generator for Laravel

v3.2.0(1mo ago)3827.1k↑112.6%1[1 PRs](https://github.com/Linkxtr/laravel-qrcode/pulls)MITPHPPHP ^8.2CI passing

Since Oct 6Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/Linkxtr/laravel-qrcode)[ Packagist](https://packagist.org/packages/linkxtr/laravel-qrcode)[ RSS](/packages/linkxtr-laravel-qrcode/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (10)Dependencies (69)Versions (18)Used By (0)

Laravel QR Code Generator
=========================

[](#laravel-qr-code-generator)

[![Latest Version on Packagist](https://camo.githubusercontent.com/07cc326163b1fee8f5f8fb9be101429a55ea8554c1ea6c786aa86d932744c5d8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c696e6b7874722f6c61726176656c2d7172636f64652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/linkxtr/laravel-qrcode)[![Total Downloads](https://camo.githubusercontent.com/3a879a8f7ecfed85dc96bece045e6feb87cd1f4ba207c9c7b4355f06e6e17abf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c696e6b7874722f6c61726176656c2d7172636f64652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/linkxtr/laravel-qrcode)[![PHP Version](https://camo.githubusercontent.com/986a82879e8e04d07341d7af1f552199264b62ae09d119845b5adebb364de709/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6c696e6b7874722f6c61726176656c2d7172636f64652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/linkxtr/laravel-qrcode)[![Laravel Version](https://camo.githubusercontent.com/908217e7751ece2d707dd175a5badf3db4abfb0a31a17604c2febe7980b5e3cb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d31322b2d4646324432303f7374796c653d666c61742d737175617265266c6f676f3d6c61726176656c)](https://packagist.org/packages/linkxtr/laravel-qrcode)[![License](https://camo.githubusercontent.com/2f135b9b93a7eae058b00b1480ed7e03914cb9aa7781c12a7c39cddf69eae525/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6c696e6b7874722f6c61726176656c2d7172636f64652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/linkxtr/laravel-qrcode)

A clean, fluent, and modern QR code generator for Laravel. Generate SVG, PNG, WebP, and EPS codes via a fluent Facade, a native Blade component, or an interactive Artisan CLI.

**[📚 Read the Full Documentation](https://laravel-qrcode.mintlify.app)**

---

⚡ Quickstart
------------

[](#-quickstart)

Install the package via Composer:

```
composer require linkxtr/laravel-qrcode
```

The Fluent Facade
-----------------

[](#the-fluent-facade)

```
use Linkxtr\QrCode\Facades\QrCode;

$qr = QrCode::size(400)
    ->format('png')
    ->color(30, 64, 175)
    ->errorCorrection('H')
    ->merge(public_path('logo.png'), 0.25)
    ->generate('https://example.com');
```

The Blade Component
-------------------

[](#the-blade-component)

Drop QR codes directly into your views with zero PHP logic. It automatically handles accessibility (aria-label) and escaping:

```

```

Rich Data Types
---------------

[](#rich-data-types)

Built-in helpers for standardized payloads:

```
QrCode::WiFi([
    'ssid' => 'OfficeNetwork',
    'encryption' => 'WPA2',
    'password' => 'secret'
]);

QrCode::Email('hello@example.com', 'Say Hi!');
QrCode::BTC('bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh', 0.005);
```

📖 Documentation
---------------

[](#-documentation)

For full installation instructions, detailed customization options (gradients, CMYK, custom eye shapes), and advanced macro usage, please visit the official documentation:

👉 [laravel-qrcode.mintlify.app](https://laravel-qrcode.mintlify.app)

🚀 Upgrading to V3
-----------------

[](#-upgrading-to-v3)

If you are upgrading from v1.x or v2.x, please refer to our [Upgrade Guide](https://laravel-qrcode.mintlify.app/advanced/upgrade-guide) for a complete list of breaking changes and migration steps.

📄 License
---------

[](#-license)

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

###  Health Score

54

—

FairBetter than 97% of packages

Maintenance91

Actively maintained with recent releases

Popularity40

Moderate usage in the ecosystem

Community12

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95.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 ~18 days

Recently: every ~12 days

Total

16

Last Release

36d ago

Major Versions

1.x-dev → v2.0.02025-12-30

2.x-dev → v3.0.02026-06-04

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/65240054?v=4)[khaled sadek](/maintainers/khaled-sadek)[@khaled-sadek](https://github.com/khaled-sadek)

---

Top Contributors

[![khaled-sadek](https://avatars.githubusercontent.com/u/65240054?v=4)](https://github.com/khaled-sadek "khaled-sadek (84 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")[![google-labs-jules[bot]](https://avatars.githubusercontent.com/in/842251?v=4)](https://github.com/google-labs-jules[bot] "google-labs-jules[bot] (2 commits)")

---

Tags

laravellaravel-packagephpqrcodeqrcode-generatorqr codeqrcodeqrlaravelsvgpngpaymentvCardwifibacon-qr-code

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/linkxtr-laravel-qrcode/health.svg)

```
[![Health](https://phpackages.com/badges/linkxtr-laravel-qrcode/health.svg)](https://phpackages.com/packages/linkxtr-laravel-qrcode)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.4M354](/packages/psalm-plugin-laravel)[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k99.8M355](/packages/laravel-horizon)[illuminate/database

The Illuminate Database package.

2.8k55.8M13.1k](/packages/illuminate-database)[laravel/ai

The official AI SDK for Laravel.

1.1k4.6M327](/packages/laravel-ai)[moonshine/moonshine

Laravel administration panel

1.3k268.2k89](/packages/moonshine-moonshine)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

79227.1M230](/packages/laravel-mcp)

PHPackages © 2026

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