<
thead
>
<
tr
>
<
th
>
Barcode
</
th
>
<
th
>
Checklist
Activity
</
th
>
<
th
>
Kondisi
</
th
>
<
th
>
Harga
</
th
>
<
th
><
button
type
=
"
button
"
name
=
"
button
"
id
=
"
addMore
"
onclick
=
"
add()
"
class
=
"
btn btn-success
"
>
<
span
class
=
"
fa fa-plus
"
></
span
></
button
></
th
>
</
tr
>
</
thead
>
<
tbody
id
=
"
record_add
"
>
<
tr
>
<
td
>
<
select
name
=
"
barcode[]
"
required
id
=
""
class
=
"
form-control
"
>
<
option
value
=
""
>-----
Please
Select
-----</
option
>
</
select
>
</
td
>
<
td
>
<
select
name
=
"
activity[]
"
id
=
"
activity
"
required
class
=
"
form-control
"
>
<
option
value
=
""
>
Please
Select
</
option
>
@foreach ($checklist
as $ck)
<
option
value
=
"
{{ $ck
->kode_detail_activity
}}
"
>{{ $ck
->nama_detail_activity }}
</
option
>
@endforeach
</
select
>
</
td
>
<
td
>
<
select
name
=
"
kondisi[]
"
id
=
""
required
class
=
"
form-control
"
>
<
option
value
=
""
>-----
Please
Select
-----</
option
>
</
select
>
</
td
>
<
td
>
<
input
type
=
"
number
"
class
=
"
form-control
"
name
=
"
harga[]
"
placeholder
=
"
0
"
>
</
td
>
</
tr
>
</
tbody
>