@extends('task/layout') @section('content')

ルーブリック名 / 項目名

{{ $task->context_title }} {{ $task->title }} {{ $isGroupMode == '0' ? '個人発表' : 'グループ発表' }}でのブース編集

{{-- エラーメッセージ --}} @if ($errors->any())
@endif {{-- CSV アップロード --}}
@csrf
{{-- is_group_mode を preview に渡す --}}
@if(empty($boothUsers)) 戻る @endif
@if (isset($filename))
選択中のファイル: {{ $filename }}
@endif
{{-- CSVファイルのバリデーション --}} @if (!empty($csvErrors))
@endif @if (!empty($boothUsers) && empty($filename))
このブース構成は 登録済み のものです。
@endif @if (!empty($boothUsers))
@csrf
@php $index = 1; @endphp @foreach ($boothUsers as $booth => $members) @php $names = collect($members)->pluck('name')->implode(', '); @endphp {{-- hidden inputs --}} @foreach ($members as $i => $user) @endforeach @endforeach
No. ブース名 メンバー/グループ
{{ $index++ }} {{ $booth }} {{ $names }}
{{-- is_group_mode を store に渡す --}}
{{-- 保存ボタン:エラーがない場合のみ表示 --}}
@if (empty($csvErrors)) @endif 戻る
@endif
@endsection @push('scripts') @endpush