renew and other crud functionality

This commit is contained in:
2026-01-11 18:31:03 +00:00
parent 55bf184d53
commit ca516d74c2
21 changed files with 882 additions and 74 deletions

View File

@@ -11,7 +11,15 @@
<h1 class="text-2xl font-bold text-slate-900">Tenants</h1>
<Link :href="route('tenants.create')" class="px-4 py-2 bg-[#137fec] text-white rounded-lg font-medium hover:bg-[#137fec]/90">Add Tenant</Link>
</div>
<div class="bg-white rounded-xl p-4 border border-slate-200">
<input
v-model="search"
@input="filterResults"
type="text"
placeholder="Search by tenant..."
class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:outline-none focus:ring-2 focus:ring-[#137fec]"
/>
</div>
<div class="bg-white rounded-xl border border-slate-200 overflow-hidden">
<table class="w-full">
<thead class="bg-slate-50">
@@ -30,8 +38,10 @@
<td class="px-6 py-4 text-sm text-slate-900">{{ tenant.email }}</td>
<td class="px-6 py-4 text-sm text-slate-900">{{ tenant.nationality }}</td>
<td class="px-6 py-4 text-sm space-x-2">
<div class="flex items-center gap-3">
<Link :href="route('tenants.edit', tenant.id)" class="text-[#137fec] hover:underline">Edit</Link>
<button @click="destroy(tenant.id)" class="text-red-600 hover:underline">Delete</button>
</div>
</td>
</tr>
</tbody>
@@ -48,4 +58,10 @@ defineProps({ tenants: Object })
const destroy = (id) => {
if (confirm('Delete this tenant?')) router.delete(route('tenants.destroy', id))
}
const search = ref('')
const filterResults = () => {
router.get(route('tenants.index'), { search: search.value }, { preserveState: true })
}
</script>