hello I'm new for livewire 3 I have table inside form, data table having radio button for yes or no after selecting yes or no I'm going to submit that form that time I want to store fetch detail like id and name along this. now I'm any getting radio button value, me to solve
<div class="modal-body">
<form wire:submit.prevent="Save" autocomplete="off">
<div class="card card-bordered card-preview table-responsive ">
<div class="card-inner ">
<table class="datatable table ">
<thead>
<tr>
<th style=" border: 1px solid black; text-align: center;">SL</th>
<th style=" border: 1px solid black; text-align: center;">ID No</th>
<th style=" border: 1px solid black; text-align: center;">NAME</th>
<th style=" border: 1px solid black; text-align: center;">YES</th>
<th style=" border: 1px solid black; text-align: center;">NO</th>
</tr>
</thead>
<tbody>
@foreach ($UserDetail as $key=>$UserDetails)
@php $ID = 0+$key @endphp
<td style=" border: 1px solid black; text-align: center;">
</td>
<td style=" border: 1px solid black; text-align: center;">
</td>
<td style=" border: 1px solid black; text-align: center;">
</td>
<td style=" border: 1px solid black; text-align: center;">
<div class="custom-control custom-control-md custom-radio ">
<input type="radio" wire:model="TableInput..data" class="custom-control-input" name="TableInputs[]" id="sv2-preference-fedev" value="YES" required>
<label class="custom-control-label" for="sv2-preference-fedev"></label>
</div>
</td>
<td style=" border: 1px solid black; text-align: center;">
<div style="text-align: center;" class="custom-control custom-control-md custom radio"><input type="radio" wire:model="TableInput..data" class="custom-control-input" name="TableInputs[]" id="sv2-preference-uxdis" value="NO" required>
<label class="custom-control-label" for="sv2-preference-uxdis"></label>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
<br>
<div >
<button type="submit" class="btn btn-md btn-primary">SAVE </button>
</div>
</form>
</div>
Controller class StudentAttendance extends Component {
public $name;
public $id;
public $TableInput = [];
public function mount()
{
$this->User = User::all();
}
public function Save()
{
$bel = Data::create([
'Id' => $value['Id'],
'name' => $value['name'],
'data' => $value['data'],
]);
}
}
}
via Chebli Mohamed