56 lines
1.8 KiB
Vue
56 lines
1.8 KiB
Vue
<template>
|
|
<layout>
|
|
<template #header>
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
<bread-crumb text="Autos" :href="route('cars')" />
|
|
<bread-crumb :text="contract.car.name" :href="route('cars.show', contract.car.id)" />
|
|
<bread-crumb :text="'Vertrag vom ' + contract.date" :href="route('contracts.show', contract.id)" />
|
|
bearbeiten
|
|
</h2>
|
|
</template>
|
|
<div>
|
|
<contract-form :data="data" :insurance_types="insurance_types" :meta="meta">
|
|
<template #title>Vertragsangaben</template>
|
|
<template #description>
|
|
Vertrag & anpassen.
|
|
</template>
|
|
</contract-form>
|
|
</div>
|
|
</layout>
|
|
</template>
|
|
|
|
<script>
|
|
import Layout from '@/Layouts/Layout'
|
|
import BreadCrumb from '@/Components/BreadCrumb.vue'
|
|
import ContractForm from './Components/ContractForm.vue'
|
|
import { ref } from 'vue'
|
|
|
|
export default {
|
|
components: {
|
|
BreadCrumb,
|
|
Layout,
|
|
ContractForm,
|
|
},
|
|
props: {
|
|
contract: Object,
|
|
insurance_types: Object,
|
|
},
|
|
data() {
|
|
return {
|
|
currentRoute: 'contracts.edit',
|
|
meta: {
|
|
form_name: 'EditContract' + this.contract.id,
|
|
route: this.route('contracts.update', this.contract.id),
|
|
method: 'put',
|
|
button_text: 'Änderungen speichern',
|
|
on_success: 'Änderungen gespeichert',
|
|
},
|
|
data: {
|
|
date: ref(Date.parse(this.contract.date)),
|
|
price: this.contract.price,
|
|
insurance_type: this.contract.insurance_type,
|
|
}
|
|
}
|
|
},
|
|
}
|
|
</script> |