nova-qrcode-field
nova-qrcode-field copied to clipboard
A Laravel Nova field to generate QR Code
Nova QR Code
A Laravel Nova field to generate QR Code.
Installation
You can install the Nova field in to a Laravel app that uses Nova via composer :
composer require devtical/nova-qrcode-field
Usage
use Devtical\Qrcode\Qrcode;
Basic
Qrcode::make('QR Code', 'field')
Setting sizes
Qrcode::make('QR Code', 'field')
->indexSize(100)
->detailSize(500)
With logo
Qrcode::make('QR Code', 'field')
->logo('http://source.to/logo.png')
With background
Qrcode::make('QR Code', 'field')
->background('http://source.to/background.png')
With logo & background
Qrcode::make('QR Code', 'field')
->logo('http://source.to/logo.png')
->background('http://source.to/background.png')
Related
Credits
License
The MIT License (MIT).