| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <script setup>
- import { ref } from 'vue'
- import { Inertia } from '@inertiajs/inertia'
- import { Head, useForm } from '@inertiajs/inertia-vue3'
- import AppButton from '@/components/AppButton.vue'
- import AppInputText from '@/components/AppInputText.vue'
- import AppDialog from '@/components/AppDialog.vue'
- import AppLayout from '@/layouts/AppLayout.vue'
-
- const props = defineProps({
- laundry: Object,
- })
-
- const form = useForm({
- name: props.laundry.name,
- price: props.laundry.price,
- unit: props.laundry.unit,
- })
-
- const submit = () => {
- form.put(route('laundries.update', props.laundry.id))
- }
-
- const visibleDialog = ref(false)
-
- const confirmDialog = () => {
- visibleDialog.value = true
- }
-
- const onAgree = (id) => Inertia.delete(route('laundries.destroy', id))
-
- const onCancel = () => (visibleDialog.value = false)
- </script>
-
- <template>
- <Head title="Ubah tipe Laundry" />
-
- <AppLayout>
- <div class="grid">
- <div class="col-12 lg:col-8">
- <Card>
- <template #content>
- <div class="grid">
- <div class="col-12 md:col-6">
- <AppInputText label="Nama" placeholder="nama" :error="form.errors.name" v-model="form.name" />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputText label="Harga" placeholder="harga" :error="form.errors.price" v-model="form.price" />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputText label="Satuan" placeholder="satuan" :error="form.errors.unit" v-model="form.unit" />
- </div>
- </div>
- </template>
-
- <template #footer>
- <div
- class="flex flex-column sm:flex-row align-items-center sm:justify-content-center sm:justify-content-between"
- >
- <AppDialog
- message="Yakin akan menghapus data ini?"
- v-model:visible="visibleDialog"
- @agree="onAgree(laundry.id)"
- @cancel="onCancel"
- />
-
- <Button label="Hapus" icon="pi pi-trash" class="p-button-text p-button-danger" @click="confirmDialog" />
-
- <AppButton @click="submit" label="Simpan" icon="pi pi-check" />
- </div>
- </template>
- </Card>
- </div>
- </div>
- </AppLayout>
- </template>
|