|
@@ -4,8 +4,8 @@
|
|
|
<div class="container-fluid">
|
|
<div class="container-fluid">
|
|
|
<div class="row align-items-center">
|
|
<div class="row align-items-center">
|
|
|
<div class="col-xl-5 col-md-12">
|
|
<div class="col-xl-5 col-md-12">
|
|
|
- <div class="">Всего найдено: {{ $products->total() }}</div>
|
|
|
|
|
- {{ $products->links() }}
|
|
|
|
|
|
|
+ <div class="mb-1">Всего найдено: {{ $products->total() }}</div>
|
|
|
|
|
+{{-- {{ $products->links() }}--}}
|
|
|
Выбрано: <span id="count_selected">0</span>
|
|
Выбрано: <span id="count_selected">0</span>
|
|
|
<button class="btn btn-sm btn-primary mx-3" onclick="select_export()">Экспорт</button>
|
|
<button class="btn btn-sm btn-primary mx-3" onclick="select_export()">Экспорт</button>
|
|
|
<button class="btn btn-sm btn-primary" onclick="reset_selected()">Сбросить выбор</button>
|
|
<button class="btn btn-sm btn-primary" onclick="reset_selected()">Сбросить выбор</button>
|
|
@@ -65,10 +65,11 @@
|
|
|
<div class="col-12">
|
|
<div class="col-12">
|
|
|
<table class="table">
|
|
<table class="table">
|
|
|
<thead>
|
|
<thead>
|
|
|
- <tr class="align-middle">
|
|
|
|
|
- <th class="text-center">Артикул<br>
|
|
|
|
|
- <label><input type="checkbox" class="check_all" onchange="toggle(this)"> Все</label>
|
|
|
|
|
|
|
+ <tr class="align-top">
|
|
|
|
|
+ <th class="text-center">
|
|
|
|
|
+ <label>Все<br><input type="checkbox" class="check_all" onchange="toggle(this)"></label>
|
|
|
</th>
|
|
</th>
|
|
|
|
|
+ <th class="text-center">Артикул</th>
|
|
|
{{-- <th>Группа <br> Наименование <br> Наименование под образец формы</th>--}}
|
|
{{-- <th>Группа <br> Наименование <br> Наименование под образец формы</th>--}}
|
|
|
<th>Цена, руб.</th>
|
|
<th>Цена, руб.</th>
|
|
|
<th>Характеристики</th>
|
|
<th>Характеристики</th>
|
|
@@ -80,9 +81,9 @@
|
|
|
<tbody>
|
|
<tbody>
|
|
|
@foreach($products as $product)
|
|
@foreach($products as $product)
|
|
|
<tr class="align-middle prod-tr">
|
|
<tr class="align-middle prod-tr">
|
|
|
|
|
+ <td class="text-center"><input type="checkbox" onchange="select_product({{ $product->id }}, this)" class="form-check-inline me-0 prd-chk" name="ids" value="{{ $product->id }}"></td>
|
|
|
<td class="text-center">
|
|
<td class="text-center">
|
|
|
<label>
|
|
<label>
|
|
|
- <input type="checkbox" onchange="select_product({{ $product->id }}, this)" class="form-check-inline me-0 prd-chk" name="ids" value="{{ $product->id }}"><br>
|
|
|
|
|
{{ $product->article }}<br>
|
|
{{ $product->article }}<br>
|
|
|
{{ $product->series }}
|
|
{{ $product->series }}
|
|
|
|
|
|