laravelで下記のリンク先のライブラリを使っております。
https://github.com/Edofre/laravel-fullcalendar
googleカレンダーの予定を表示させたいのですが出来ずに困っております。
どうすればよいでしょうか?
setoptionのところにAPIキーやカレンダーIDを設置すればよいと思い、書いたのですがうまくいきませんでした。
分かる方、ご教授お願い致します。
$calendar->setOptions([
'firstDay'=> date('w'),
'nowIndicator' => true,
'editable' => false,
'locale' => 'ja',
'contentHeight'=> 450,
'resourceAreaWidth' => '15%',
'timeFormat' => 'HH:mm',
'displayEventEnd' =>true,
'aspectRatio' => 1.8,
'scrollTime' => '06:00',
'defaultView' => 'timelineWeek',
'googleCalendarApiKey' => config('global.google_calendar_api'), //googlecalendarIDを複数セットし、同期した予定の色を指定 'eventSources' => [
['googleCalendarId' => 'googleカレンダーのID','color' => 'red'],
['googleCalendarId' => '祝日のグーグルカレンダーID','color' => '#3cb371','display' => 'background']
], 'header' => array('left'=> 'prev next today','center'=>'title','right'=> 'timelineDay,timelineWeek,timelineMonth,'),
とこのような感じで記述しております。
追記
環境情報
php→7.0.33
laravel→5.1.46
となっております
あなたの回答
tips
プレビュー