Files
panel/resources/js/pages/apps/roles/index.vue

37 lines
891 B
Vue
Raw Normal View History

2025-08-04 16:33:07 +03:30
<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>