69 lines
2.8 KiB
PHP
Executable file
69 lines
2.8 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<div class="card">
|
|
<h6 class="card-header">
|
|
{{__('Kategorien')}}
|
|
</h6>
|
|
<div class="card-datatable table-responsive">
|
|
<table class="datatables-style table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th style="max-width: 60px;"> </th>
|
|
<th>{{__('Pos')}}</th>
|
|
<th>{{__('Kategorie')}}</th>
|
|
{{--<th>{{__('Kategorie')}}</th>--}}
|
|
<th>{{__('Headline')}}</th>
|
|
<th>{{__('Produkte')}}</th>
|
|
{{-- <th>__('Translate') </th>--}}
|
|
<th>{{__('Status')}}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($values as $value)
|
|
<tr>
|
|
<td>
|
|
<a href="{{route('admin_product_category_edit', [$value->id])}}" class="btn icon-btn btn-sm btn-primary">
|
|
<span class="far fa-edit"></span>
|
|
</a>
|
|
</td>
|
|
<td>{{ $value->pos }}</td>
|
|
<td>@if($value->parent) {{ $value->parent->name }} @else {{ $value->name }} @endif</td>
|
|
{{-- <td>@if($value->parent) {{ $value->name }} @else - @endif</td>--}}
|
|
<td>{{ $value->headline }}</td>
|
|
<td>{{ $value->product_categories->count() }}</td>
|
|
|
|
{{-- <td>{{ $value->getTranNames() }}</td> --}}
|
|
<td data-sort="{{ $value->active }}">@if($value->active) <span class="badge badge-pill badge-success"><i class="fa fa-check"></i></span>@else<span class="badge badge-pill badge-danger"><i class="fa fa-times"></i></span>@endif</td>
|
|
<td><a class="text-danger" href="{{ route('admin_product_category_delete', ['category', $value->id]) }}" onclick="return confirm('{{__('Really delete entry?')}}');"><i class="far fa-trash-alt"></i></a></td>
|
|
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<div class="mt-4 ml-4">
|
|
<a href="{{route('admin_product_category_edit', ['new'])}}" class="btn btn-sm btn-primary">
|
|
{{__('Neue Kategorie erstellen')}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
$( document ).ready(function() {
|
|
|
|
|
|
$('.datatables-style').dataTable({
|
|
"bLengthChange": false,
|
|
"iDisplayLength": 50,
|
|
"order": [[ 1, "desc" ]],
|
|
|
|
"language": {
|
|
"url": "/js/German.json"
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
@endsection
|