devtical/nova-qrcode-field

Nova QR code field

Fund package maintenance!
Kristories

v2.0.2 2023-11-25 11:17 UTC

This package is auto-updated.

Last update: 2024-03-25 12:03:33 UTC


README

A Laravel Nova field to generate QR Code.

Logo & background

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)

Size

With logo

Qrcode::make('QR Code', 'field')
    ->logo('http://source.to/logo.png')

Logo

With background

Qrcode::make('QR Code', 'field')
    ->background('http://source.to/background.png')

Background

With logo & background

Qrcode::make('QR Code', 'field')
    ->logo('http://source.to/logo.png')
    ->background('http://source.to/background.png')

Logo & background

Related

Credits

License

The MIT License (MIT).