Browse Source

Merge pull request #317 from IceToast/fix_products_column_naming

fix: 🚑️ swapped nodes/eggs column naming -> now correct order
Dennis 3 năm trước cách đây
mục cha
commit
42ec17b873
1 tập tin đã thay đổi với 26 bổ sung27 xóa
  1. 26 27
      resources/views/admin/products/index.blade.php

+ 26 - 27
resources/views/admin/products/index.blade.php

@@ -10,9 +10,8 @@
                 </div>
                 <div class="col-sm-6">
                     <ol class="breadcrumb float-sm-right">
-                        <li class="breadcrumb-item"><a href="{{route('home')}}">Dashboard</a></li>
-                        <li class="breadcrumb-item"><a class="text-muted"
-                                                       href="{{route('admin.products.index')}}">Products</a></li>
+                        <li class="breadcrumb-item"><a href="{{ route('home') }}">Dashboard</a></li>
+                        <li class="breadcrumb-item"><a class="text-muted" href="{{ route('admin.products.index') }}">Products</a></li>
                     </ol>
                 </div>
             </div>
@@ -29,8 +28,7 @@
                 <div class="card-header">
                     <div class="d-flex justify-content-between">
                         <h5 class="card-title"><i class="fas fa-sliders-h mr-2"></i>Products</h5>
-                        <a href="{{route('admin.products.create')}}" class="btn btn-sm btn-primary"><i
-                                class="fas fa-plus mr-1"></i>Create new</a>
+                        <a href="{{ route('admin.products.create') }}" class="btn btn-sm btn-primary"><i class="fas fa-plus mr-1"></i>Create new</a>
                     </div>
                 </div>
 
@@ -48,15 +46,14 @@
                             <th>Disk</th>
                             <th>Databases</th>
                             <th>Backups</th>
-                            <th>Eggs</th>
                             <th>Nodes</th>
+                            <th>Eggs</th>
                             <th>Servers</th>
                             <th>Created at</th>
                             <th></th>
                         </tr>
                         </thead>
-                        <tbody>
-                        </tbody>
+                        <tbody></tbody>
                     </table>
 
                 </div>
@@ -75,30 +72,32 @@
         }
 
         document.addEventListener("DOMContentLoaded", function () {
-            $('#datatable').DataTable({
+            $("#datatable").DataTable({
                 processing: true,
                 serverSide: true,
                 stateSave: true,
-                order: [[ 2, "asc" ]],
-                ajax: "{{route('admin.products.datatable')}}",
+                order: [
+                    [ 2, "asc" ]
+                ],
+                ajax: "{{ route('admin.products.datatable') }}",
                 columns: [
-                    {data: 'disabled'},
-                    {data: 'name'},
-                    {data: 'price'},
-                    {data: 'memory'},
-                    {data: 'cpu'},
-                    {data: 'swap'},
-                    {data: 'disk'},
-                    {data: 'databases'},
-                    {data: 'backups'},
-                    {data: 'nodes', sortable: false},
-                    {data: 'eggs', sortable: false},
-                    {data: 'servers', sortable: false},
-                    {data: 'created_at'},
-                    {data: 'actions', sortable: false},
+                    {data: "disabled"},
+                    {data: "name"},
+                    {data: "price"},
+                    {data: "memory"},
+                    {data: "cpu"},
+                    {data: "swap"},
+                    {data: "disk"},
+                    {data: "databases"},
+                    {data: "backups"},
+                    {data: "nodes", sortable: false},
+                    {data: "eggs", sortable: false},
+                    {data: "servers", sortable: false},
+                    {data: "created_at"},
+                    {data: "actions", sortable: false}
                 ],
-                fnDrawCallback: function( oSettings ) {
-                    $('[data-toggle="popover"]').popover();
+                fnDrawCallback: function (oSettings) {
+                    $("[data-toggle=\"popover\"]").popover();
                 }
             });
         });