A Laravel Nova tool to manage QR code.
You can install the Nova tool in to a Laravel app that uses Nova via composer :
composer require kristories/nova-qrcode-manager
Publish the migration with :
php artisan vendor:publish --tag=qrcode-manager-migrations
Add QrcodeManager
to your NovaServiceProvider.php
use Kristories\QrcodeManager\QrcodeManager;
// ...
public function tools()
{
return [
// ...
new QrcodeManager(),
];
}
The MIT License (MIT).