ordering store item add
Adding new feature in store owner page. *ordering item
This commit is contained in:
@@ -44,11 +44,11 @@
|
||||
<a href="{{ url('user/store-items/add-item') }}" type="button" class="btn btn-primary">
|
||||
<i class="fa fa-plus"></i> Add new Item
|
||||
</a>
|
||||
<button class="btn btn-primary"><i class="fa fa-exchange"></i> Re-arrange item</button>
|
||||
<a href="{{ url('user/store-items/re-arrange') }}" class="btn btn-primary"><i class="fa fa-exchange"></i> Re-arrange item</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- BEGIN PRODUCTS -->
|
||||
<div id="item_list_sort">
|
||||
|
||||
@foreach($product_array as $i => $product)
|
||||
@foreach($thumbnails as $t => $thumb)
|
||||
@if($thumb['product_id'] == $product->Id)
|
||||
@@ -56,7 +56,7 @@
|
||||
@define $filename = $thumb['thumb']
|
||||
@endif
|
||||
@endforeach
|
||||
<div class="col-md-3 col-sm-6" id="{{ 'order_number_' . $product->Ordering }}">
|
||||
<div class="col-md-3 col-sm-6">
|
||||
<div class="thumbnail" >
|
||||
<a href="{{ url('user/store-items/item') }}/{{ $product->ProductURL }}">
|
||||
<img style="height:200px" src="{{ config('site_config.prod_private_server_ip') }}/images/{{ $filename . '?t=' . time() }}" alt="{{ $product->ProductName }}" >
|
||||
@@ -71,7 +71,6 @@
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user