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.

77 lines
2.8 KiB
PHTML

@extends('admin.adminlayout')
@section('page_title')
{{__("Categories")}}
-
@endsection
@section('content')
<div class="container">
@include('starter-kit::component.err')
<form action="{{route('admin.cat.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>
{{__("Image")}}
</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>
<img src="{{$cat->thumbUrl()}}" class="x64" alt="">
</td>
<td>
{{$cat->name}}
</td>
<td>
{{$cat->parent->name??'-'}}
</td>
<td>
<a href="{{route('admin.cat.edit',$cat->slug)}}" class="btn btn-primary">
<i class="ri-edit-2-line"></i>
</a>
<a href="{{route('admin.cat.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,\App\Models\Cat::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>
<a class="btn-add" href="{{route('admin.cat.create')}}">
<i class="ri-add-line"></i>
</a>
</div>
@endsection