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/KARATAS/resources/views/admin-views/product/partials/_choices.blade.php You should set ROOT_URL correctly, otherwise the web may not work correctly.

14 lines
662 B

2 years ago
@foreach($choice_options as $key=>$choice)
<div class="row">
<div class="col-md-3">
<input type="hidden" name="choice_no[]" value="{{$choice_no[$key]}}">
<input type="text" class="form-control" name="choice[]" value="{{$choice['title']}}"
placeholder="{{translate('messages.choice_title')}}" readonly>
</div>
<div class="col-lg-9">
<input type="text" class="form-control call-update-sku" name="choice_options_{{$choice_no[$key]}}[]" data-role="tagsinput"
value="@foreach($choice['options'] as $c) {{$c.','}} @endforeach">
</div>
</div>
@endforeach