mgsmus
Hocam
@foreach($yemler as $item)
<tr>
<th>{{ $item->id }}</th>
<th>
<span class="checkbox-inline">
<input type="checkbox" name="yem[{{$item->id}}][yem_id]" value="{{ $item->id }}">
<!--<input type="checkbox" name="yem_id[]" value="{{ $item->id }}">-->
{{ $item->name }}
</span>
</th>
<th>
<input type="text" class="form-control cowprice" id="miktar{{$item->id}}" name="yem[{{$item->id}}][miktar]" onchange="totalPriceCowSell();" onkeydown="totalPriceCowSell();" onkeyup="totalPriceCowSell();">
<!--<input type="text" class="form-control cowprice" id="miktar{{$item->id}}" name="miktar[]" onchange="totalPriceCowSell();" onkeydown="totalPriceCowSell();" onkeyup="totalPriceCowSell();">-->
</th>
</tr>
@endforeach
foreach($request->yem as $value) {
if (isset($value['yem_id'])) {
if (isset($value['miktar'])){
$value['cikis_id'] = $cikisId;
$value['yem_id'] = $request->yem_id;
$value['miktar'] = $request->miktar;
dd($request->yem);
YemCikisIslem::create($value);
}
}
}
bu şekle getirdim ve yine sonuç bu veri boş gelince nedense id leri gelmiyor