kristories/nova-qrcode-manager

This package is abandoned and no longer maintained. The author suggests using the devtical/nova-qrcode-manager package instead.

A Laravel Nova tool to manage QR code.

v1.0.2 2022-09-23 10:52 UTC

This package is auto-updated.

Last update: 2022-09-24 13:13:17 UTC


README

A Laravel Nova tool to manage QR code. Behind the scenes, devtical/nova-qrcode-field is used.

Logo & background

Installation

You can install the Nova tool in to a Laravel app that uses Nova via composer :

composer require devtical/nova-qrcode-manager

Publish the migration with :

php artisan vendor:publish --tag=qrcode-manager-migrations
php artisan migrate

Usage

Add QrcodeManager to your NovaServiceProvider.php

use Devtical\QrcodeManager\QrcodeManager;

// ...

public function tools()
{
    return [
        // ...
    	new QrcodeManager(),
    ];
}

License

The MIT License (MIT).