Your ROOT_URL in app.ini is http://167.99.32.63:3000/ but you are visiting http://167.99.32.63/ibrahim/BAGETWEBPANEL/blame/branch/master/resources/views/admin-views/product/partials/_edit-combinations.blade.php You should set ROOT_URL correctly, otherwise the web may not work correctly.

31 lines
1.0 KiB

2 years ago
@if(count($combinations) > 0)
<table class="table table-bordered">
<thead>
<tr>
<td class="text-center">
<label for="" class="control-label">{{translate('messages.Variant')}}</label>
</td>
<td class="text-center">
<label for="" class="control-label">{{translate('messages.Variant Price')}}</label>
</td>
</tr>
</thead>
<tbody>
@foreach ($combinations as $key => $combination)
<tr>
<td>
<label for="" class="control-label">{{ $combination['type'] }}</label>
</td>
<td>
<input type="number" name="price_{{ $combination['type'] }}"
value="{{$combination['price']}}" min="0"
step="0.01"
class="form-control" required>
</td>
</tr>
@endforeach
</tbody>
</table>
@endif