Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.36.171
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
werneckbh /
laravel-qr-code /
docs /
Delete
Unzip
Name
Size
Permission
Date
Action
.sass-cache
[ DIR ]
drwxr-xr-x
2018-02-12 09:00
_layouts
[ DIR ]
drwxr-xr-x
2018-02-12 09:00
_config.yml
179
B
-rw-r--r--
2018-02-12 09:00
calendar.md
734
B
-rw-r--r--
2018-02-12 09:00
email.md
390
B
-rw-r--r--
2018-02-12 09:00
index.md
1.7
KB
-rw-r--r--
2018-02-12 09:00
me-card.md
289
B
-rw-r--r--
2018-02-12 09:00
phone.md
341
B
-rw-r--r--
2018-02-12 09:00
sms.md
352
B
-rw-r--r--
2018-02-12 09:00
text.md
242
B
-rw-r--r--
2018-02-12 09:00
url.md
320
B
-rw-r--r--
2018-02-12 09:00
v-card.md
1.74
KB
-rw-r--r--
2018-02-12 09:00
wi-fi.md
495
B
-rw-r--r--
2018-02-12 09:00
Save
Rename
# Laravel QR Code Generator Create QR Codes with Laravel This is a wrapper for [QR Code Generator for PHP](https://werneckbh.github.io/qr-code), a standalone library to generate QR Codes in PNG and SVG. ## Installation Install using **composer**: ```bash $ composer require werneckbh/laravel-qr-code ``` ##### Laravel 5.4 (5.5+ can skip this step) You need to add provider and alias to your `config/app.php` file: ```php <?php 'providers' => [ LaravelQRCode\Providers\QRCodeServiceProvider::class, ], 'aliases' => [ 'QRCode' => LaravelQRCode\Facades\QRCode::class, ] ``` ## <a id='code-types'></a>QR Code Types Laravel QR Code Generator supports the following QR Codes: - [Calendar Event](calendar.md) - [Email Message](email.md) - [Phone](phone.md) - [SMS](sms.md) - [Text](text.md) - [URL](url.md) - [meCard](me-card.md) - [vCard v3](v-card.md) - [Wi-fi Network Settings](wi-fi.md) ### Common Options These options are available to any of the QR Code types above. Option | Return value | Expected Values -------|:-------------|:--------------- `setErrorCorrectionLevel($level)`|$this|'L','M','Q' or 'H' `setSize(4)`|$this| Pixel size. 1 to 10 `setMargin(3)`|$this| 1 to 10 `setOutfile($file)`|$this|file path (public) and name.ext to save QR Code `png()`| |stream (or save if outfile is set) QR Code as a PNG image `svg()`| |stream (or save if outfile is set) QR Code as an SVG image ## Notes - If you set an outfile, you **MUST make sure the path exists**. Don't forget to **set filename extension** according to your output (.png or .svg). - Since SVGs are scalable, use them to make complex QR Codes such as [Calendar Events](calendar.md), [meCards](me-card.md) and [vCards](v-card.md)