forked from a1gard/xshop
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.
104 lines
4.0 KiB
PHTML
104 lines
4.0 KiB
PHTML
@extends('admin.adminlayout')
|
|
@section('page_title')
|
|
{{__("Products")}}
|
|
-
|
|
@endsection
|
|
@section('content')
|
|
<div class="container">
|
|
|
|
@include('starter-kit::component.err')
|
|
<div class="alert alert-dark">
|
|
<span>
|
|
{{__("Filter")}}:
|
|
</span>
|
|
<a href="{{route('admin.product.index')}}" class="btn btn-dark" data-filter="all" >
|
|
{{__("All")}}
|
|
</a>
|
|
@foreach( App\Helpers\stockTypes() as $k => $filter)
|
|
<a href="?filter={{$k}}" data-filter="{{$k}}" class="btn btn-dark filter">
|
|
{{$filter}}
|
|
</a>
|
|
@endforeach
|
|
<a href="?filter=TRASH" data-filter="TRASH" class="btn btn-dark filter">
|
|
<span class="fa fa-trash"></span>
|
|
{{__("Trashed")}}
|
|
</a>
|
|
|
|
|
|
</div>
|
|
<form action="{{route('admin.product.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>
|
|
{{__("Status")}}
|
|
</th>
|
|
<th>
|
|
{{__("Action")}}
|
|
<a href="{{route('admin.product.create')}}" class="btn btn-success float-right"><i
|
|
class="fa fa-plus"></i></a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($products as $n)
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
|
|
{{$n->id}}
|
|
</td>
|
|
<td>
|
|
@if($n->getMedia()->count() > 0)
|
|
<img src="{{$n->thumbUrl()}}" class="feature-image" alt="">
|
|
@endif
|
|
</td>
|
|
<td>
|
|
<a href="{{route('admin.product.edit',$n->slug)}}">
|
|
{{$n->name}}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<div class="status products-status-{{$n->status}}"></div>
|
|
</td>
|
|
<td>
|
|
<a href="{{route('admin.product.edit',$n->slug)}}" class="btn btn-primary">
|
|
<i class="fa fa-edit"></i>
|
|
{{__("Edit")}}
|
|
</a>
|
|
@if($n->deleted_at == null)
|
|
<a href="{{route('admin.product.delete',$n->slug)}}"
|
|
class="btn btn-danger delete-confirm">
|
|
<i class="fa fa-times"></i>
|
|
{{__("Delete")}}
|
|
</a>
|
|
@else
|
|
<a href="{{route('admin.product.restore',$n->slug)}}"
|
|
class="btn btn-success">
|
|
<i class="fa fa-refresh"></i>
|
|
{{__("Restore")}}
|
|
</a>
|
|
@endif
|
|
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@include('starter-kit::component.bulk',['actions' => App\Helpers\stockTypes()])
|
|
</form>
|
|
<div class="text-center pt-3">
|
|
{{$products->links()}}
|
|
</div>
|
|
</div>
|
|
@endsection
|