以下のようなトグルボタンを実装したい。
https://gyazo.com/eda3b55a7b980f8cedce35f1121ece92
index.blade.php
1 2<!DOCTYPE HTML> 3<html> 4<head> 5 <title>ToDoリスト</title> 6</head> 7<body> 8 9<h1>TODOリスト</h1> 10<br> 11<input type="radio">すべて 12<input type="radio">作業中 13<input type="radio">完了 14 15 16@isset($todos) 17@foreach ($todos as $todos) 18 19<table> 20 <tr> 21 <th>ID</th> 22 <th>コメント</th> 23 <th>状態</th> 24 </tr> 25 <tr> 26 <th>{{$loop->iteration}}</th> 27 <th>{{ $todos->id }}</th> 28 <th>{{ $todos->comment }}</th> 29 30 31 <th> <input type="submit" class="" value="作業中"></th> //この部分 32 33 34 <th><form action="{{ route('todos.delete',[ 'id' => $todos->id ])}}" method="POST"> 35 @csrf 36 @method("DELETE") 37 <button type="submit">削除</button> 38</form></th> 39 </tr> 40</table> 41 42@endforeach 43@endisset 44 45 46<h2>新規タスクの追加</h2> 47<form action="/todos" method="POST"> 48 49 <textarea name="comment" rows="1" cols="25"></textarea> 50 51 {{ csrf_field() }} 52 <button class="btn"> 追加 </button> 53</form> 54 55</body> 56</html>
ループ変数を使うのかなと予想は立てつつも
実装方法が分かりません。
もし分かる方いらっしゃればよろしくお願い致します。