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
807 B
PHTML
28 lines
807 B
PHTML
@extends('admin.templates.panel-list-template')
|
|
|
|
@section('list-title')
|
|
<i class="ri-user-3-line"></i>
|
|
{{__("Users list")}}
|
|
@endsection
|
|
@section('title')
|
|
{{__("Users list")}} |
|
|
@endsection
|
|
@section('filter')
|
|
<h2>
|
|
<i class="ri-shield-check-line"></i>
|
|
{{__("Role filter")}}:
|
|
</h2>
|
|
<searchable-multi-select
|
|
:items='{{arrayNormolizeVueCompatible(\App\Models\User::$roles, true)}}'
|
|
title-field="name"
|
|
value-field="name"
|
|
xname="filter[role]"
|
|
:xvalue='{{request()->input('filter.role','[]')}}'
|
|
:close-on-Select="true"></searchable-multi-select>
|
|
@endsection
|
|
@section('bulk')
|
|
@foreach(\App\Models\User::$roles as $role)
|
|
<option value="role.{{$role}}"> {{__("Set")}} {{__("$role")}} </option>
|
|
@endforeach
|
|
@endsection
|