tuncaybahadir/quar
Quar is a Laravel QR code generator for PHP 8.2+ and Laravel 10–13. Create QR codes quickly with a fluent API: set size, colors, and eye/marker styles (square, rounded, circle, ring). Returns ready-to-render output for Blade views.
chillerlan/php-qrcode.*"This package lets us add QR codes to [X feature] in days, not weeks, by leveraging a battle-tested Laravel wrapper for QR generation. It’s MIT-licensed, actively maintained (last update: March 2026), and supports all our current Laravel/PHP versions. For example:
*"Pros:
composer require tuncaybahadir/quar + Laravel facade integration.Cons:
margin(1) for logos (documented in README).Recommendation: Use for all new QR needs unless bulk generation or real-time updates are required. For those cases, we can evaluate Endroid/QrCode or a microservice.
Quick Start:
// Generate and display in Blade
{{ \tbQuar\Facades\Quar::size(200)->color('#32a852')->generate('user:123')->toSvg() }}
// Save to storage
$path = storage_path('app/qr_user123.png');
\tbQuar\Facades\Quar::format('png')->generate('user:123', $path);
```"*
How can I help you explore Laravel packages today?