82 lines
2.0 KiB
Vue
82 lines
2.0 KiB
Vue
<script setup>
|
|
import { Head, Link, useForm } from "@inertiajs/vue3"
|
|
import {
|
|
mdiAccountKey,
|
|
mdiArrowLeftBoldOutline,
|
|
} from "@mdi/js"
|
|
import LayoutAuthenticated from "@/Layouts/LayoutAuthenticated.vue"
|
|
import SectionMain from "@/Components/SectionMain.vue"
|
|
import SectionTitleLineWithButton from "@/Components/SectionTitleLineWithButton.vue"
|
|
import CardBox from "@/Components/CardBox.vue"
|
|
import BaseButton from "@/Components/BaseButton.vue"
|
|
|
|
const props = defineProps({
|
|
permission: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<LayoutAuthenticated>
|
|
<Head title="View permission" />
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
:icon="mdiAccountKey"
|
|
title="View permission"
|
|
main
|
|
>
|
|
<BaseButton
|
|
:route-name="route('permission.index')"
|
|
:icon="mdiArrowLeftBoldOutline"
|
|
label="Back"
|
|
color="white"
|
|
rounded-full
|
|
small
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox class="mb-6">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td
|
|
class="
|
|
p-4
|
|
pl-8
|
|
text-slate-500
|
|
dark:text-slate-400
|
|
hidden
|
|
lg:block
|
|
"
|
|
>
|
|
Name
|
|
</td>
|
|
<td data-label="Name">
|
|
{{ permission.name }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td
|
|
class="
|
|
p-4
|
|
pl-8
|
|
text-slate-500
|
|
dark:text-slate-400
|
|
hidden
|
|
lg:block
|
|
"
|
|
>
|
|
Created
|
|
</td>
|
|
<td data-label="Created">
|
|
{{ new Date(permission.created_at).toLocaleString() }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</LayoutAuthenticated>
|
|
</template>
|