@extends('layouts.app') @section('title', $scenario->name . ' - LINE一斉送信の作成') @section('page-title', $scenario->name . ' - LINE一斉送信の作成') @section('content')
送信一覧へ
@if(! $lineAccount)
このシナリオに LINEアカウントが紐づいていません。シナリオ設定で LINE アカウントを選んでから作成してください。
@endif
@csrf
送信内容
@error('name')
{{ $message }}
@enderror
@if($lineCustomSenders->isNotEmpty())
選ぶと、その名前・アイコンで届きます(LINE側の設定によっては反映されない場合があります)。
@endif @if($lineTemplates->isNotEmpty())
@endif
@include('account.scenario.partials._line_message_fields', [ 'row' => null, 'textLabel' => 'メッセージ本文', ])
@if($readerFormFields->isNotEmpty() || $customPlaceholders->isNotEmpty())
置き換え文字(クリックで本文に挿入)
@foreach($readerFormFields as $f) @if(!empty($f->form_enabled)) @endif @endforeach @foreach($customPlaceholders as $p) @endforeach
@endif
送信対象・タイミング

対象 このシナリオの有効な読者のうち、LINEでつながっている方{{ (int) $targetCount }} 人

@if($scenarioLabels->isNotEmpty())
ラベルで絞り込む 任意
このラベルが付いている人だけに送る
@foreach($scenarioLabels as $label)
name, (array) old('required_labels', []), true) ? 'checked' : '' }}>
@endforeach
このラベルが付いている人は除く
@foreach($scenarioLabels as $label)
name, (array) old('excluded_labels', []), true) ? 'checked' : '' }}>
@endforeach
何も選ばなければ、LINEでつながっている有効な読者全員に送ります。必須ラベルを複数選ぶとすべて付いている人が対象です。
@endif
@error('scheduled_at')
{{ $message }}
@enderror
空欄なら今すぐ送信します。未来の日時を入れると、その時刻に自動で送信されます。
キャンセル
@push('scripts') @endpush @endsection