first commit

This commit is contained in:
2026-01-11 17:11:43 +00:00
commit 55bf184d53
157 changed files with 20499 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
<template>
<AppLayout>
<template #breadcrumb>
<Link href="/" class="hover:text-[#137fec]">Home</Link>
<span class="mx-2">/</span>
<Link :href="route('buildings.index')" class="hover:text-[#137fec]">Buildings</Link>
<span class="mx-2">/</span>
<span>Create</span>
</template>
<div class="max-w-2xl">
<h1 class="text-2xl font-bold text-slate-900 mb-6">Add Building</h1>
<form @submit.prevent="submit" class="bg-white rounded-xl border border-slate-200 p-6 space-y-4">
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Owner</label>
<select v-model="form.owner_id" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required>
<option value="">Select Owner</option>
<option v-for="owner in owners" :key="owner.id" :value="owner.id">{{ owner.name }}</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Building Name</label>
<input v-model="form.building_name" type="text" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required />
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Address</label>
<input v-model="form.address" type="text" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required />
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">City</label>
<input v-model="form.city" type="text" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required />
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Status</label>
<select v-model="form.status" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required>
<option value="vacant">Vacant</option>
<option value="occupied">Occupied</option>
</select>
</div>
<div class="flex gap-4 pt-4">
<button type="submit" class="px-6 py-2 bg-[#137fec] text-white rounded-lg font-medium hover:bg-[#137fec]/90">Save</button>
<Link :href="route('buildings.index')" class="px-6 py-2 border border-slate-200 text-slate-600 rounded-lg font-medium hover:bg-slate-50">Cancel</Link>
</div>
</form>
</div>
</AppLayout>
</template>
<script setup>
import { useForm, Link } from '@inertiajs/vue3'
import AppLayout from '@/Layouts/AppLayout.vue'
const props = defineProps({ owners: Array })
const form = useForm({
owner_id: '',
building_name: '',
address: '',
city: '',
status: 'vacant'
})
const submit = () => form.post(route('buildings.store'))
</script>

View File

@@ -0,0 +1,70 @@
<template>
<AppLayout>
<template #breadcrumb>
<Link href="/" class="hover:text-[#137fec]">Home</Link>
<span class="mx-2">/</span>
<Link :href="route('buildings.index')" class="hover:text-[#137fec]">Buildings</Link>
<span class="mx-2">/</span>
<span>Edit</span>
</template>
<div class="max-w-2xl">
<h1 class="text-2xl font-bold text-slate-900 mb-6">Edit Building</h1>
<form @submit.prevent="submit" class="bg-white rounded-xl border border-slate-200 p-6 space-y-4">
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Owner</label>
<select v-model="form.owner_id" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required>
<option value="">Select Owner</option>
<option v-for="owner in owners" :key="owner.id" :value="owner.id">{{ owner.name }}</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Building Name</label>
<input v-model="form.building_name" type="text" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required />
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Address</label>
<input v-model="form.address" type="text" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required />
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">City</label>
<input v-model="form.city" type="text" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required />
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Status</label>
<select v-model="form.status" class="w-full px-4 py-2 border border-slate-200 rounded-lg focus:ring-2 focus:ring-[#137fec]" required>
<option value="vacant">Vacant</option>
<option value="occupied">Occupied</option>
</select>
</div>
<div class="flex gap-4 pt-4">
<button type="submit" class="px-6 py-2 bg-[#137fec] text-white rounded-lg font-medium hover:bg-[#137fec]/90">Update</button>
<Link :href="route('buildings.index')" class="px-6 py-2 border border-slate-200 text-slate-600 rounded-lg font-medium hover:bg-slate-50">Cancel</Link>
</div>
</form>
</div>
</AppLayout>
</template>
<script setup>
import { useForm, Link } from '@inertiajs/vue3'
import AppLayout from '@/Layouts/AppLayout.vue'
const props = defineProps({ building: Object, owners: Array })
const form = useForm({
owner_id: props.building.owner_id,
building_name: props.building.building_name,
address: props.building.address,
city: props.building.city,
status: props.building.status
})
const submit = () => form.put(route('buildings.update', props.building.id))
</script>

View File

@@ -0,0 +1,59 @@
<template>
<AppLayout>
<template #breadcrumb>
<Link href="/" class="hover:text-[#137fec]">Home</Link>
<span class="mx-2">/</span>
<span>Buildings</span>
</template>
<div class="space-y-6">
<div class="flex justify-between items-center">
<h1 class="text-2xl font-bold text-slate-900">Buildings</h1>
<Link :href="route('buildings.create')" class="px-4 py-2 bg-[#137fec] text-white rounded-lg font-medium hover:bg-[#137fec]/90">
Add Building
</Link>
</div>
<div class="bg-white rounded-xl border border-slate-200 overflow-hidden">
<table class="w-full">
<thead class="bg-slate-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-600 uppercase">Building Name</th>
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-600 uppercase">Owner</th>
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-600 uppercase">Address</th>
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-600 uppercase">City</th>
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-600 uppercase">Status</th>
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-600 uppercase">Actions</th>
</tr>
</thead>
<tbody class="divide-y divide-slate-200">
<tr v-for="building in buildings.data" :key="building.id" class="hover:bg-slate-50">
<td class="px-6 py-4 text-sm font-medium text-slate-900">{{ building.building_name }}</td>
<td class="px-6 py-4 text-sm text-slate-900">{{ building.owner?.name }}</td>
<td class="px-6 py-4 text-sm text-slate-900">{{ building.address }}</td>
<td class="px-6 py-4 text-sm text-slate-900">{{ building.city }}</td>
<td class="px-6 py-4"><span class="px-2 py-1 text-xs font-bold rounded-md bg-green-50 text-green-700">{{ building.status }}</span></td>
<td class="px-6 py-4 text-sm space-x-2">
<Link :href="route('buildings.edit', building.id)" class="text-[#137fec] hover:underline">Edit</Link>
<button @click="destroy(building.id)" class="text-red-600 hover:underline">Delete</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</AppLayout>
</template>
<script setup>
import { Link, router } from '@inertiajs/vue3'
import AppLayout from '@/Layouts/AppLayout.vue'
defineProps({ buildings: Object })
const destroy = (id) => {
if (confirm('Delete this building?')) {
router.delete(route('buildings.destroy', id))
}
}
</script>