You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.6 KiB
PHTML

@extends('starter-kit::layouts.adminlayout')
@section('page_title')
{{__("Categories")}}
-
@endsection
@section('content')
<div class="container">
@include('starter-kit::component.err')
<form action="{{route('admin.category.bulk')}}" method="post" class="bulk-action">
@csrf
<table class="table table-striped table-bordered ">
<thead class="thead-dark">
<tr>
<th>
<input type="checkbox" class="chkall"/>
</th>
<th>
{{__("Name")}}
</th>
<th>
{{__("Parent")}}
</th>
<th>
{{__("Action")}}
</th>
</tr>
</thead>
<tbody>
@foreach ($cats as $cat)
<tr>
<td>
<input type="checkbox" name="id[]" value="{{$cat->id}}" class="m-2 chkbox"/>
{{$cat->id}}
</td>
<td>
{{$cat->name}}
</td>
<td>
{{$cat->parent != null? $cat->parent->name:'-'}}
</td>
<td>
<a href="{{route('admin.category.edit',$cat->slug)}}" class="btn btn-primary">
<i class="ri-edit-2-line"></i>
</a>
<a href="{{route('admin.category.delete',$cat->slug)}}"
class="btn btn-danger delete-confirm">
<i class="ri-close-line"></i>
</a>
@if(config('app.xlang'))
<a href="{{route('admin.lang.model',[$cat->id,\Xmen\StarterKit\Models\Category::class])}}"
class="btn btn-outline-dark translat-btn">
<i class="ri-translate"></i>
</a>
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
@include('starter-kit::component.bulk')
</form>
<div class="text-center pt-3">
{{$cats->links()}}
</div>
</div>
<a class="btn-add" href="{{route('admin.category.create')}}">
<i class="ri-add-line"></i>
</a>
@endsection