LaravelPackages.net
Acme Inc.
Toggle sidebar
boitebeet/nova-qrcode-field

Nova QR code field

419
1
1.0.0
About boitebeet/nova-qrcode-field

boitebeet/nova-qrcode-field is a Laravel package for nova qr code field. It currently has 1 GitHub stars and 419 downloads on Packagist (latest version 1.0.0). Install it with composer require boitebeet/nova-qrcode-field. Discover more Laravel packages by boitebeet or browse all Laravel packages to compare alternatives.

Last updated

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 boitebeet/nova-qrcode-field

Usage

Basic

Qrcode::make('QR Code')
    ->text('http://laravel.com')

Basic

Setting sizes

Qrcode::make('QR Code')
    ->text('http://laravel.com')
    ->indexSize(100)
    ->detailSize(500)
Qrcode::make('QR Code')
    ->text('http://laravel.com')
    ->logo('http://source.to/logo.png')

Logo

With background

Qrcode::make('QR Code')
    ->text('http://laravel.com')
    ->background('http://source.to/background.png')

Background

With logo & background

Qrcode::make('QR Code')
    ->text('http://laravel.com')
    ->logo('http://source.to/logo.png')
    ->background('http://source.to/background.png')

Logo & background

Credits

License

The MIT License (MIT).

Comments