React Main Folder & Files details
The main folder of react is src folder. There are two main files : 1. index.js & 2. App.js. A. index.js import React from 'react'; import ReactDOM from 'react-dom/client'; import…
The main folder of react is src folder. There are two main files : 1. index.js & 2. App.js. A. index.js import React from 'react'; import ReactDOM from 'react-dom/client'; import…
npm install -g create-react-app npx create-react-app <appname> cd <appname> npm start npm install react-bootstrap bootstrap
=> Goto SSH option in your cpanel. => Copy this type code : ssh -p 65002 u242714267@89.117.188.73. => Open Your cmd and paste this code & press Enter. => Paste…
=> Install this package first composer require simplesoftwareio/simple-qrcode => qr.blade.php <?php $st = "pankaj"; $st .= "kumar"; $st .= "loniya"; ?> {{QrCode::generate($st)}}
=> 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…
Ever wondered how to add those eye-catching images to your Laravel application? Images play an important role in captivating your users, but managing uploads can feel daunting. Don’t worry, enthusiastic…
<?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 .=…