74 lines
4.4 KiB
PHP
74 lines
4.4 KiB
PHP
@extends('layouts.main')
|
|
@section('title')
|
|
{{__("Categories")}}
|
|
@endsection
|
|
|
|
@section('page-title')
|
|
<div class="page-title">
|
|
<div class="row align-items-center">
|
|
<div class="col-12 col-md-6">
|
|
<h4 class="mb-0">@yield('title')</h4>
|
|
</div>
|
|
<div class="col-12 col-md-6 d-flex justify-content-end">
|
|
@if (!empty($category))
|
|
<a class="btn btn-primary me-2" href="{{ route('category.index') }}">< {{__("Back to All Categories")}} </a>
|
|
@can('category-create')
|
|
<a class="btn btn-primary me-2" href="{{ route('category.create', ['id' => $category->id]) }}">+ {{__("Add Subcategory")}} - /{{ $category->name }} </a>
|
|
@endcanany
|
|
@else
|
|
@can('category-create')
|
|
<a class="btn btn-primary" href="{{ route('category.create') }}">+ {{__("Add Category")}} </a>
|
|
@endcan
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<section class="section">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="text-right col-md-12">
|
|
<a href="{{ route('category.order') }}">+ {{__("Set Order of Categories")}} </a>
|
|
</div>
|
|
</div>
|
|
<table class="table table-borderless table-striped" aria-describedby="mydesc"
|
|
id="table_list" data-toggle="table" data-url="{{ route('category.show', $category->id ?? 0) }}"
|
|
data-click-to-select="true" data-side-pagination="server" data-pagination="true"
|
|
data-page-list="[5, 10, 20, 50, 100, 200,500,2000]" data-search="true" data-search-align="right"
|
|
data-toolbar="#toolbar" data-show-columns="true" data-show-refresh="true"
|
|
data-trim-on-search="false" data-responsive="true" data-sort-name="sequence"
|
|
data-sort-order="asc" data-pagination-successively-size="3" data-query-params="queryParams"
|
|
data-escape="true"
|
|
data-table="categories" data-use-row-attr-func="true" data-mobile-responsive="false"
|
|
data-show-export="true" data-export-options='{"fileName": "category-list","ignoreColumn": ["operate"]}' data-export-types="['pdf','json', 'xml', 'csv', 'txt', 'sql', 'doc', 'excel']">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th scope="col" data-field="id" data-align="center" data-sortable="true">{{ __('ID') }}</th>
|
|
<th scope="col" data-field="name" data-sortable="true" data-formatter="categoryNameFormatter">{{ __('Name') }}</th>
|
|
<th scope="col" data-field="image" data-align="center" data-formatter="imageFormatter">{{ __('Image') }}</th>
|
|
<th scope="col" data-field="subcategories_count" data-align="center" data-sortable="false">{{ __('Subcategories') }}</th>
|
|
<th scope="col" data-field="custom_fields_count" data-align="center" data-sortable="false">{{ __('Custom Fields') }}</th>
|
|
<th scope="col" data-field="advertisements_count" data-sortable="true" data-align="center" data-formatter="">{{ __('Advertisement Count') }}</th>
|
|
@can('category-update')
|
|
<th scope="col" data-field="status" data-width="5" data-sortable="true" data-formatter="statusSwitchFormatter">{{ __('Active') }}</th>
|
|
@endcan
|
|
@canany(['category-update', 'category-delete'])
|
|
<th scope="col" data-field="operate" data-escape="false" data-sortable="false">{{ __('Action') }}</th>
|
|
@endcanany
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endsection
|