Skip to content

devtical/nova-qrcode-manager

Repository files navigation

Nova QR Code Manager

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).