first commit

This commit is contained in:
f4ilji
2024-09-19 16:06:49 +05:00
commit b686638a39
1664 changed files with 428174 additions and 0 deletions
@@ -0,0 +1,24 @@
<template>
<th scope="col" class="pl-6 py-3 text-left">
<div class="flex items-center gap-x-2">
<span class="text-xs font-semibold uppercase tracking-wide text-gray-800 dark:text-gray-200">
{{ name }}
</span>
</div>
</th>
</template>
<script>
import {Link} from "@inertiajs/vue3";
export default {
name: "AdminIndexTableRow",
components: {Link},
props: ['name']
}
</script>
<style scoped>
</style>