You can install the package via composer:
composer require yeejiawei/laravel-qrcode
use \Yeejiawei\LaravelQrcode\LaravelQrcode;
$qr = LaravelQrcode::create('test');
$qr->setErrorCorrectionLevel(ErrorCorrectionLevel::QR_ECLEVEL_M); // default is ErrorCorrectionLevel::QR_ECLEVEL_M
$qr->setSize(100); // Set size of the qr code
$qr->setMargin(4); // Set margin of the qr code
$qr->save(storage_path('app/qr.png'));
- Yee Jia Wei
- All Contributors
- Phil Karn, KA9Q
The MIT License (MIT). Please see License File for more information.