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 : 18.188.103.42
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](index.md) >> [QR Code Types](index.md#code-types) >> vCard v3 --- # vCard v3 ```php <?php Route::get('qr-code/examples/v-card', function () { // Personal Information $firstName = 'John'; $lastName = 'Doe'; $title = 'Mr.'; $email = 'john.doe@example.com'; // Addresses $homeAddress = [ 'type' => 'home', 'pref' => true, 'street' => '123 my street st', 'city' => 'My Beautiful Town', 'state' => 'LV', 'country' => 'Neverland', 'zip' => '12345-678' ]; $wordAddress = [ 'type' => 'work', 'pref' => false, 'street' => '123 my work street st', 'city' => 'My Dreadful Town', 'state' => 'LV', 'country' => 'Hell', 'zip' => '12345-678' ]; $addresses = [$homeAddress, $wordAddress]; // Phones $workPhone = [ 'type' => 'work', 'number' => '001 555-1234', 'cellPhone' => false ]; $homePhone = [ 'type' => 'home', 'number' => '001 555-4321', 'cellPhone' => false ]; $cellPhone = [ 'type' => 'work', 'number' => '001 9999-8888', 'cellPhone' => true ]; $phones = [$workPhone, $homePhone, $cellPhone]; return QRCode::vCard($firstName, $lastName, $title, $email, $addresses, $phones) ->setErrorCorrectionLevel('H') ->setSize(4) ->setMargin(2) ->svg(); }); ``` ### Notes - You can have only one preferential address - Error Correction Level is set to H(igh) because there is a lot of information - Try using SVG when encoding complex information, since you can re-scale the image file at will without loss of quality