utkarsh / laravel-qrcode
A laravel package which simplifies qrcode generation.
Installs: 71
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:laravel-plugin
This package is not auto-updated.
Last update: 2025-02-01 22:19:18 UTC
README
A laravel plugin to simplify QRcode generation.
Installation
Install it via composer composer require utkarsh/laravel-qrcode
Then add the QrCodeServiceProvider
to the providers
array in config/app.php
.
Utkarsh\QrCode\Providers\QrCodeServiceProvider::class,
then add the QrCode
alias to the aliases array in the same file.
'QrCode' => Utkarsh\QrCodeServiceProvider\Facades\QRcode::class,
Usage
Coming Soon!