@extends('layouts.setup') @section('title', '通知設定') @section('page-title', '通知設定') @push('styles') @endpush @section('setup_body') {{-- フラッシュは layouts.app が全画面共通で表示する(二重表示防止)。 --}}
申込やエラーなどの通知を Chatwork で受け取る設定です(アカウント最大 {{ $maxAccounts }} 件・1アカウントあたりルームID最大 {{ $maxRooms }} 件)。どのタイミングで通知するかは、各機能の画面で設定します。
@csrf @method('PUT')
Chatwork 連携
@foreach($chatworkRows as $ai => $row) @include('setting.partials._notification_chatwork_account', [ 'accountIndex' => $ai, 'accountRow' => $row, 'maxRooms' => $maxRooms, ]) @endforeach
@endsection @push('scripts') @endpush