reyemtech/laravel-vcard
最新稳定版本:1.0.0
Composer 安装命令:
composer require reyemtech/laravel-vcard
包简介
A fluent builder class for vCard files.
README 文档
README
A fluent builder class for vCard files.
Installation
You can install the package via composer:
composer require reyemtech/laravel-vcard
Usage
use Astrotomic\Vcard\Properties\Email; use Astrotomic\Vcard\Properties\Gender; use Astrotomic\Vcard\Properties\Kind; use Astrotomic\Vcard\Properties\Tel; use Astrotomic\Vcard\Vcard; use Carbon\Carbon; Vcard::make() ->kind(Kind::INDIVIDUAL) ->gender(Gender::MALE) ->fullName('John Adam Smith') ->name('Smith', 'John', 'Adam') ->email('john.smith@mail.com') ->email('john.smith@company.com', [Email::WORK, Email::INTERNET]) ->tel('+1234567890', [Tel::HOME, Tel::VOICE]) ->tel('+0987654321', [Tel::WORK, Tel::VOICE]) ->tel('+0123456789', [Tel::CELL, Tel::VOICE]) ->url('https://johnsmith.com') ->url('https://company.com') ->social('twitter', 'https://www.twitter.com/johnsmith') ->social('facebook', 'https://www.facebook.com/johnsmith') ->social('linkedin', 'https://www.linkedin.com/in/johnsmith') ->bday(Carbon::parse('1990-06-24')) ->adr('','','1600 Pennsylvania Ave NW', 'Washington', 'DC', '20500-0003', 'USA') ->photo('data:image/jpeg;base64,'.base64_encode(file_get_contents(__DIR__.'/stubs/photo.jpg'))) ->title('V. P. Research and Development') ->role('Excecutive') ->org('Google', 'GMail Team', 'Spam Detection Squad') ->member('john.smith@company.com', '550e8400-e29b-11d4-a716-446655440000') ->note('Hello world') ;
BEGIN:VCARD VERSION:4.0 FN;CHARSET=UTF-8:John Adam Smith N;CHARSET=UTF-8:Smith;John;Adam;; KIND:individual GENDER:M EMAIL;TYPE=INTERNET:john.smith@mail.com EMAIL;TYPE=WORK;TYPE=INTERNET:john.smith@company.com TEL;TYPE=HOME;TYPE=VOICE:+1234567890 TEL;TYPE=WORK;TYPE=VOICE:+0987654321 TEL;TYPE=CELL;TYPE=VOICE:+0123456789 URL:https://johnsmith.com URL:https://company.com X-SOCIALPROFILE:type=twitter:https://www.twitter.com/johnsmith X-SOCIALPROFILE:type=facebook:https://www.facebook.com/johnsmith X-SOCIALPROFILE:type=linkedin:https://www.linkedin.com/in/johnsmith BDAY:1990-06-24 ADR;TYPE=WORK:;;1600 Pennsylvania Ave NW;Washington;DC;20500-0003;USA PHOTO;data:image/jpeg;base64,... TITLE:V. P. Research and Development ROLE:Excecutive ORG:Google;GMail Team;Spam Detection Squad MEMBER:urn:uuid:550e8400-e29b-11d4-a716-446655440000 REV:2021-02-25T10:30:45.000000Z PRODID:-//Astrotomic vCard END:VCARD
统计信息
- 总下载量: 164
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-11-09