f9webltd/simple-qrcode

Simple QrCode is a QR code generator made for Laravel.
79,418 5
Install
composer require f9webltd/simple-qrcode
Latest Version:5.0.0
PHP:^8.2
License:MIT
Last Updated:Mar 19, 2026
Links: GitHub  ·  Packagist
Maintainer: ultrono

Run Tests - Current Packagist Version Packagist PHP Version

Simple QrCode Generator For Laravel

This is a PHP ^8.2 and Laravel ^11.0 / ^12.0 / ^13.0 fork of SimpleSoftwareIO/simple-qrcode (which appears to be a dead repository). The fork applies the major none merged pull requests.

Introduction

Simple QrCode is an easy to use wrapper for the popular Laravel framework based on the great work provided by Bacon/BaconQrCode.

Installation

composer require f9webltd/simple-qrcode

Quick Start

Within a Blade view

{!! QrCode::size(100)->generate(Request::url()); !!}

As an image

<img src="{!! QrCode::format('png')->generate('Embed me into an e-mail!'), 'QrCode.png', 'image/png') !!}" />
As an image inline (no image saved to disk)
<img src="data:image/png;base64, {!! base64_encode(QrCode::format('png')->size(100)->generate('Make me into an QrCode!')) !!}" />

Full documentation available here

Usage Outside Laravel

You may use this package outside of Laravel by instantiating a new F9WebLtd\QrCode\Generator class.

use F9WebLtd\QrCode\Generator;

$qrcode = new Generator;
$qrcode->size(500)->generate('Make a qrcode without Laravel!');

License

This software is released under the MIT license.

Related Packages

hexincorp/qrcode

Simple QrCode is a QR code generator made for Laravel.

17 1
tarikmanoar/laravel-qrcode

Laravel QrCode is a QR code generator made for Laravel.

2,932 3
simplesoftwareio/simple-qrcode

Simple QrCode is a QR code generator made for Laravel.

33,492,273 2,900
scolib/simple-qrcode

Simple QrCode is a QR code generator made for Laravel.

605 0
akira/laravel-qrcode

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

10,965 49