35 lines
1.6 KiB
PHP
35 lines
1.6 KiB
PHP
<div class="panel-design-details" id="orderListPanel">
|
|
<table class="table" id="tableRow" style="font-size:12px;">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-md-6">Name</th>
|
|
<th class="col-md-5">Number</th>
|
|
<th class="text-center"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="orderTableBody">
|
|
<tr class="table-tr-0">
|
|
<td>
|
|
<input type="text" name="order_names[]" class="form-control input-sm inputName roster-input" placeholder="Name">
|
|
</td>
|
|
<td>
|
|
<select class="form-control input-sm roster-input" style="border-right: 1px solid #ccc;" name="order_number[]" id="order_number">
|
|
<option value="none">none</option>
|
|
@for($i = 0; $i <= 99; $i++)
|
|
<option value="{{ $i }}">{{ $i }}</option>
|
|
@endfor
|
|
<option value="00">00</option>
|
|
</select>
|
|
</td>
|
|
<td id="action-column" class="text-center" style="padding: 4px !important; border-top: none">
|
|
<span class="tr-remove-btn">
|
|
<button type="button" id="addNewRow" class="btn btn-success btn-sm btn-roster-action" data-toggle="tooltip" title="Add Another"><i class="fa fa-plus" aria-hidden="true"></i></button>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div id="addnew-btn-tbl-row">
|
|
</div>
|
|
</div>
|
|
|