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

ルーブリック名 / 項目名

{{ $task->context_title }} {{ $task->title }} グループ編集

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