mirror of https://github.com/4xmen/xshop.git
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.
28 lines
863 B
PHTML
28 lines
863 B
PHTML
@extends('admin.templates.panel-list-template')
|
|
|
|
@section('list-title')
|
|
<i class="ri-user-3-line"></i>
|
|
{{__("Tickets list")}}
|
|
@endsection
|
|
@section('title')
|
|
{{__("Tickets list")}} -
|
|
@endsection
|
|
@section('filter')
|
|
<h2>
|
|
<i class="ri-shield-check-line"></i>
|
|
{{__("Status")}}:
|
|
</h2>
|
|
<searchable-multi-select
|
|
:items='{{arrayNormolizeVueCompatible(\App\Models\Ticket::$ticket_statuses, true)}}'
|
|
title-field="name"
|
|
value-field="name"
|
|
xname="filter[status]"
|
|
:xvalue='{{request()->input('filter.status','[]')}}'
|
|
:close-on-Select="true"></searchable-multi-select>
|
|
@endsection
|
|
@section('bulk')
|
|
<option value="close"> {{__("Close")}} </option>
|
|
<option value="pending"> {{__("Pending")}} </option>
|
|
<option value="answered"> {{__("Answered")}} </option>
|
|
@endsection
|