Files
panel/resources/js/pages/apps/roles/index.vue
2025-08-04 16:33:07 +03:30

37 lines
891 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
import RoleCards from '@/views/apps/roles/RoleCards.vue'
import UserList from '@/views/apps/roles/UserList.vue'
</script>
<template>
<VRow>
<VCol cols="12">
<h4 class="text-h4 mb-1">
Roles List
</h4>
<p class="text-body-1 mb-0">
A role provided access to predefined menus and features so that depending on assigned role an administrator can have access to what he need
</p>
</VCol>
<!-- 👉 Roles Cards -->
<VCol cols="12">
<RoleCards />
</VCol>
<VCol cols="12">
<h4 class="text-h4 mb-1 mt-6">
Total users with their roles
</h4>
<p class="text-body-1 mb-0">
Find all of your companys administrator accounts and their associate roles.
</p>
</VCol>
<VCol cols="12">
<!-- 👉 User List -->
<UserList />
</VCol>
</VRow>
</template>