@extends('layouts.app') @section('title', 'メール送信テンプレート') @section('content')

メール送信テンプレート

@if(Session::has('success')) @elseif(Session::has('error'))

入力内容に不備があります:

{!! Session::get('error') !!}
@endif @if ($errors->any()) @endif

絞り込みフィルター

@csrf {{-- 行1 --}} {{-- 行2 --}} {{-- 行3 --}}
メールテンプレートID 使用プログラムID
エリアマネージャー同報 使用フラグ
件名
{{-- ボタン --}}
{{ $templates->appends(request()->all())->links('pagination') }}
@csrf {{-- チェック + 編集ボタン --}} {{-- ソート --}} @foreach($templates as $item) @endforeach
メールテンプレートID 使用プログラムID 内部ID エリアマネージャー同報 BCCアドレス 使用フラグ 備考 件名 本文
{{ $item->mail_template_id }} {{ $item->pg_id }} {{ $item->internal_id }} {{ $item->mgr_cc_flag ? '同報する' : '同報しない' }} {{ $item->bcc_adrs }} {{ $item->use_flag ? '使用する' : '使用しない' }} {{ $item->memo }} {{ $item->subject }} {{ Str::limit($item->text, 30) }}
@endsection