@extends('layouts.app') @section('title', $event->name.' — 担当者設定') @section('page-title', $event->name) @section('content') @include('event.partials._workspace_toolbar')

担当者ごとに通知先・オンライン会議・受付可能な曜日・時間帯を設定します(Googleカレンダー連携はありません)。

担当者を追加
@if($staffMembers->isEmpty())
担当者が登録されていません
担当者を追加する
@else
@foreach($staffMembers as $staff) @endforeach
担当者名 管理名称 オンライン会議 メール通知 チャット通知 操作
{{ $staff->name }} {{ $staff->admin_name ?: '—' }} {{ $staff->onlineMeetingServiceLabel() }} @if($staff->isZoomLinked())設定済@endif {{ $staff->notify_emails ? 'あり' : '—' }} {{ $staff->chat_notify_destination !== 'none' ? strtoupper($staff->chat_notify_destination) : '通知しない' }}
設定
@csrf @method('DELETE')
@endif @endsection