Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <script setup lang="ts">
import ListTableActionLabel from '@/components/ListTableActionLabel.vue';
import { useAuthAbility } from '@/composables/useAuthAbilities';
import AppLayout from '@/layouts/AppLayout.vue';
import { Head, Link } from '@inertiajs/vue3';
import { Edit } from 'lucide-vue-next';
import groups from '@/routes/groups';
const props = defineProps<{ groups: any[] }>();
const canGroupsCreate = useAuthAbility('groups', 'create');
const canGroupsEdit = useAuthAbility('groups', 'edit');
</script>
<template>
<Head title="Groups" />
<AppLayout :breadcrumbs="[{ title: 'Groups', href: groups.index().url }]">
<div class="flex items-center justify-between gap-3 p-4">
<div />
<Link v-if="canGroupsCreate" :href="groups.create().url" class="rounded bg-blue-600 px-3 py-2 text-white">New Group</Link>
</div>
<div class="p-4">
<table class="min-w-full border">
<thead>
<tr class="bg-gray-50">
<th class="p-2 text-left">Name</th>
<th class="p-2 text-left">Description</th>
<th class="p-2 text-left">Type</th>
<th class="p-2 text-left">Users</th>
<th class="p-2 text-right">Actions</th>
</tr>
</thead>
<tbody>
<tr v-for="g in props.groups" :key="g.id" class="border-t">
<td class="p-2 font-medium">{{ g.name }}</td>
<td class="p-2 text-sm text-gray-600">{{ g.description || '-' }}</td>
<td class="p-2">
<span v-if="g.is_administrator" class="inline-flex items-center px-2 py-1 rounded-full text-xs font-medium bg-red-100 text-red-800">
Administrator
</span>
<span v-else class="inline-flex items-center px-2 py-1 rounded-full text-xs font-medium bg-gray-100 text-gray-800">
Standard
</span>
</td>
<td class="p-2">{{ g.users_count }}</td>
<td class="p-2 text-right">
<Link
v-if="canGroupsEdit"
:href="groups.edit(g.id).url"
class="inline-flex items-center justify-center rounded border px-2 py-1.5 md:px-3 md:py-1 text-sm font-medium text-gray-700 hover:bg-gray-50"
>
<ListTableActionLabel label="Edit">
<Edit class="h-4 w-4" />
</ListTableActionLabel>
</Link>
</td>
</tr>
</tbody>
</table>
</div>
</AppLayout>
</template>
|