dmyers / nova-qrcode-field

A Laravel Nova field to generate QR Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Usage

Basic

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

Basic

With logo

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

Related

Credits

License

The MIT License (MIT).

About

A Laravel Nova field to generate QR Code


Languages

Language:PHP 66.2%Language:Vue 24.1%Language:JavaScript 9.3%Language:CSS 0.4%