Laravel QR Code

=> Install this package first composer require simplesoftwareio/simple-qrcode => qr.blade.php <?php $st = "pankaj"; $st .= "kumar"; $st .= "loniya"; ?> {{QrCode::generate($st)}}

0 Comments

Laravel Installation

=> Type this command composer create-project laravel/laravel example-app => Type this command for installation of breeze package in laravel composer require laravel/breeze --dev => Type this command for install breeze…

0 Comments

QR Code Generate Using PHP

<?php // download QR code package for PHP //  https://sourceforge.net/projects/phpqrcode/files/ include('QR/qrlib.php'); $dir_name = "qrimgs/"; if(!file_exists($dir_name)){ mkdir($dir_name); } $qrstring = 'Pankaj Kumar Loniya'; $qrstring .= '28'; $qrstring .= 'EEE'; $qrstring .=…

0 Comments