A Laravel Nova tool to manage QR code. Behind the scenes, devtical/nova-qrcode-field is used.
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
Add QrcodeManager
to your NovaServiceProvider.php
use Devtical\QrcodeManager\QrcodeManager;
// ...
public function tools()
{
return [
// ...
new QrcodeManager(),
];
}
The MIT License (MIT).