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.
xshop/resources/views/admin/products/product-list.blade.php

31 lines
886 B
PHTML

@extends('admin.templates.panel-list-template')
@section('list-title')
<i class="ri-user-3-line"></i>
{{__("Products list")}}
@endsection
@section('title')
{{__("Products list")}} -
@endsection
@section('filter')
{{-- Other filters --}}
<h2>
<i class="ri-book-3-line"></i>
{{__("Category")}}:
</h2>
<searchable-multi-select
:items='{{\App\Models\Category::all(['id','name'])}}'
title-field="name"
value-field="id"
xlang="{{config('app.locale')}}"
xname="filter[category_id]"
:xvalue='{{request()->input('filter.category_id','[]')}}'
:close-on-Select="true"></searchable-multi-select>
@endsection
@section('bulk')
{{-- <option value="-"> - </option> --}}
<option value="publish"> {{__("Publish")}} </option>
<option value="draft"> {{__("Draft")}} </option>
@endsection