Package Data | |
---|---|
Maintainer Username: | hansvn |
Maintainer Contact: | hans@brandworks.be (HansVN) |
Package Create Date: | 2017-03-10 |
Package Last Update: | 2020-03-19 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:09:05 |
Package Statistics | |
---|---|
Total Downloads: | 16,166 |
Monthly Downloads: | 102 |
Daily Downloads: | 1 |
Total Stars: | 5 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This package contains an iCalendar file generator for laravel. Created from some code I had lying around.
$vcalendar = array(
'prodid' => array('company' => 'My Company', 'product' => 'VCalendar attachment', 'language' => \App::getLocale()),
'uid' => 'my@email.address',
'organizer' => array('name' => 'my name', 'email' => 'my@email.address'),
'location' => 'Grand Canyon',
'subject' => 'Hiking',
'description' => 'Going on a trip',
'start_date' => '2017-03-10 09:00:00',
'end_date' => '2017-03-10 19:00:00',
'attendees' => array(
array('name' => 'an invitee', 'email' => 'invitee@email.address'),
)
);
//return file_path on temp directory
$file = VCalendar::generate($vcalendar);
After updating composer, add the ServiceProvider to the providers array in config/app.php
Hansvn\Vcalendar\ServiceProvider::class,
Add this to your facades:
'VCalendar' => Hansvn\Vcalendar\Facade::class
After updating composer, add the ServiceProvider to the providers array in config/app.php
'Hansvn\Vcalendar\L4ServiceProvider',
Add this to your facades:
'VCalendar' => 'Hansvn\Vcalendar\L4Facade'
The MIT License (MIT). Please see License File for more information.