Fullcalendarを使用するときに、イベントが無い場合No events to displayと表示されるのを日本語にするやり方を教えてください。下記がソースコードです。
Laravel -v6
fullcalendar -v 6.8
// resources/js/fullcalendar.js import { Calendar } from '@fullcalendar/core' import timeGridPlugin from '@fullcalendar/timegrid'; import interactionPlugin from '@fullcalendar/interaction'; import momentTimezonePlugin from '@fullcalendar/moment-timezone'; import listPlugin from '@fullcalendar/list'; import dayGridPlugin from '@fullcalendar/daygrid'; document.addEventListener('DOMContentLoaded', function () { const calendarElweek = document.getElementById('calendarweek'); const calendarweek = new Calendar(calendarElweek, { allDaySlot: false, plugins: [listPlugin], timeZone: 'Asia/Tokyo', // momentTimezonePlugin initialView: 'listWeek', locale: 'ja', navLinks: 'true', buttonText: { today: '今週' }, events: '/admin/reservation/events', }); calendarday.render(); calendarmonth.render(); calendarweek.render(); });
試したことは、javascriptを使用して要素を取得して、それを置き換える処理を実装しようとしましたが、できませんでした。
サイトなども調べてみたのですが、有力な情報はなく行き詰まっております。ご教授いただけると幸いです。
下記が実際の画面です。
一応コントローラーも下記に記載しておきます。
<?php namespace App\Http\Controllers\Admin; use DB; use App\Model\User; use App\Model\Admin; use App\Model\Reservation; use App\Http\Controllers\Controller; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; class ReservationCalendarController extends Controller { public function events() { $admin_id = Auth::id(); $reservations = Reservation::where('admin_id', $admin_id)->selectRaw("DATE_FORMAT(date, '%Y-%m-%eT%H:%i') as time, count, comment, user_id")->get(); $events = []; foreach($reservations as $reservation) { if($reservation->comment){ $event['title'] = $reservation->user->name." ".$reservation->count."名"." 連絡事項 ".$reservation->comment; }else{ $event['title'] = $reservation->user->name." ".$reservation->count."名"." 連絡事項 無し"; } // dd($reservations); $event['start'] = $reservation->time; $events[] = $event; } // dd('アイウエオ'); echo json_encode($events); } }
あなたの回答
tips
プレビュー