Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devtical/nova-qrcode-manager
A Laravel Nova tool to manage QR code
https://github.com/devtical/nova-qrcode-manager
laravel laravel-nova laravel-package nova qr qr-code qr-codes qr-generator qrcode qrcode-generator
Last synced: 5 days ago
JSON representation
A Laravel Nova tool to manage QR code
- Host: GitHub
- URL: https://github.com/devtical/nova-qrcode-manager
- Owner: devtical
- License: mit
- Created: 2018-10-09T16:15:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-09T00:03:25.000Z (13 days ago)
- Last Synced: 2025-01-09T16:53:55.993Z (12 days ago)
- Topics: laravel, laravel-nova, laravel-package, nova, qr, qr-code, qr-codes, qr-generator, qrcode, qrcode-generator
- Language: PHP
- Homepage:
- Size: 203 KB
- Stars: 23
- Watchers: 1
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Nova QR Code Manager
A Laravel Nova tool to manage QR code. Behind the scenes, [devtical/nova-qrcode-field](https://github.com/devtical/nova-qrcode-field) is used.
![Logo & background](art/cover.png)
## Installation
You can install the Nova tool in to a [Laravel](http://laravel.com) app that uses [Nova](http://nova.laravel.com) via composer :
```cli
composer require devtical/nova-qrcode-manager
```Publish the migration with :
```cli
php artisan vendor:publish --tag=qrcode-manager-migrations
php artisan migrate
```## Usage
Add `QrcodeManager` to your `NovaServiceProvider.php`
```php
use Devtical\QrcodeManager\QrcodeManager;// ...
public function tools()
{
return [
// ...
new QrcodeManager(),
];
}
```## License
The MIT License (MIT).