Skip to content

bsormagec/nova-qrcode-field

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 56.4%
  • Vue 31.1%
  • JavaScript 12.0%
  • CSS 0.5%