/home/techb158/ileadtechnology.com/SSM/public/js/configuration/basic/index~js
Edit: /home/techb158/ileadtechnology.com/SSM/public/js/configuration/basic/index~js/setup.js (48287B)
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["js/configuration/basic/index~js/setup"],{
/***/ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/views/configuration/basic/form.vue?vue&type=script&lang=js&":
/*!******************************************************************************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib??ref--4-0!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/views/configuration/basic/form.vue?vue&type=script&lang=js& ***!
\******************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
/* harmony default export */ __webpack_exports__["default"] = ({
props: {
setupWizard: {
"default": false
},
configurations: {
required: false
}
},
components: {},
data: function data() {
return {
configForm: new Form({
institute_name: '',
institute_running_body: '',
institute_recognition_number: '',
institute_recognition_body: '',
institute_foundation_date: '',
address_line_1: '',
address_line_2: '',
city: '',
state: '',
zipcode: '',
country: '',
phone: '',
fax: '',
email: '',
website: '',
config_type: ''
}, false),
icon: '',
logo: ''
};
},
mounted: function mounted() {
if (!helper.hasPermission('access-configuration')) {
helper.notAccessibleMsg();
this.$router.push('/dashboard');
}
this.icon = helper.getConfig('icon');
this.logo = helper.getConfig('logo');
if (!this.setupWizard) this.getConfiguration();
},
methods: {
getConfiguration: function getConfiguration() {
var _this = this;
var loader = this.$loading.show();
axios.get('/api/configuration').then(function (response) {
_this.configForm = helper.formAssign(_this.configForm, response);
loader.hide();
})["catch"](function (error) {
loader.hide();
helper.showErrorMsg(error);
});
},
submit: function submit() {
var _this2 = this;
var loader = this.$loading.show();
this.configForm.config_type = 'basic';
return this.configForm.post('/api/configuration').then(function (response) {
_this2.$store.dispatch('setConfig', {
loaded: false
});
toastr.success(response.message);
loader.hide();
return true;
})["catch"](function (error) {
loader.hide();
helper.showErrorMsg(error);
return false;
});
},
updateLogo: function updateLogo(val) {
this.$store.dispatch('setConfig', {
logo: val
});
},
updateIcon: function updateIcon(val) {
this.$store.dispatch('setConfig', {
icon: val
});
}
},
filters: {
moment: function moment(date) {
return helper.formatDate(date);
},
momentDateTime: function momentDateTime(date) {
return helper.formatDateTime(date);
}
},
watch: {
configurations: function configurations(val) {
if (val) helper.formAssign(this.configForm, val);
}
}
});
/***/ }),
/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/views/configuration/basic/form.vue?vue&type=template&id=20cf2fbd&":
/*!**********************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/views/configuration/basic/form.vue?vue&type=template&id=20cf2fbd& ***!
\**********************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
var render = function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("div", { staticClass: "row" }, [
_c(
"div",
{ class: ["col-12", !_vm.setupWizard ? "col-sm-7" : "", "p-0", "pl-3"] },
[
_c("div", { staticClass: "card" }, [
_c("div", { staticClass: "card-body p-4" }, [
_c(
"form",
{
on: {
submit: function($event) {
$event.preventDefault()
return _vm.submit($event)
},
keydown: function($event) {
return _vm.configForm.errors.clear($event.target.name)
}
}
},
[
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-12 col-sm-8" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(
_vm._s(_vm.trans("configuration.institute_name"))
)
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.institute_name,
expression: "configForm.institute_name"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "institute_name",
placeholder: _vm.trans(
"configuration.institute_name"
)
},
domProps: { value: _vm.configForm.institute_name },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"institute_name",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "institute_name"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-4" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(
_vm._s(
_vm.trans("configuration.institute_running_body")
)
)
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.institute_running_body,
expression: "configForm.institute_running_body"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "institute_running_body",
placeholder: _vm.trans(
"configuration.institute_running_body"
)
},
domProps: {
value: _vm.configForm.institute_running_body
},
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"institute_running_body",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "institute_running_body"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-4" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(
_vm._s(
_vm.trans(
"configuration.institute_foundation_date"
)
)
)
]),
_vm._v(" "),
_c("datepicker", {
attrs: {
bootstrapStyling: true,
placeholder: _vm.trans(
"configuration.institute_foundation_date"
)
},
on: {
selected: function($event) {
return _vm.configForm.errors.clear(
"institute_foundation_date"
)
}
},
model: {
value: _vm.configForm.institute_foundation_date,
callback: function($$v) {
_vm.$set(
_vm.configForm,
"institute_foundation_date",
$$v
)
},
expression: "configForm.institute_foundation_date"
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "institute_foundation_date"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-4" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(
_vm._s(
_vm.trans(
"configuration.institute_recognition_body"
)
)
)
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.institute_recognition_body,
expression:
"configForm.institute_recognition_body"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "institute_recognition_body",
placeholder: _vm.trans(
"configuration.institute_recognition_body"
)
},
domProps: {
value: _vm.configForm.institute_recognition_body
},
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"institute_recognition_body",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "institute_recognition_body"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-4" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(
_vm._s(
_vm.trans(
"configuration.institute_recognition_number"
)
)
)
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value:
_vm.configForm.institute_recognition_number,
expression:
"configForm.institute_recognition_number"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "institute_recognition_number",
placeholder: _vm.trans(
"configuration.institute_recognition_number"
)
},
domProps: {
value: _vm.configForm.institute_recognition_number
},
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"institute_recognition_number",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "institute_recognition_number"
}
})
],
1
)
])
]),
_vm._v(" "),
_c("h4", { staticClass: "card-title" }, [
_vm._v(_vm._s(_vm.trans("configuration.contact_information")))
]),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-12 col-sm-6" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(
_vm._s(_vm.trans("configuration.address_line_1"))
)
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.address_line_1,
expression: "configForm.address_line_1"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "address_line_1",
placeholder: _vm.trans(
"configuration.address_line_1"
)
},
domProps: { value: _vm.configForm.address_line_1 },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"address_line_1",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "address_line_1"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-6" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(
_vm._s(_vm.trans("configuration.address_line_2"))
)
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.address_line_2,
expression: "configForm.address_line_2"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "address_line_2",
placeholder: _vm.trans(
"configuration.address_line_2"
)
},
domProps: { value: _vm.configForm.address_line_2 },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"address_line_2",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "address_line_2"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.city")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.city,
expression: "configForm.city"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "city",
placeholder: _vm.trans("configuration.city")
},
domProps: { value: _vm.configForm.city },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"city",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "city"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.state")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.state,
expression: "configForm.state"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "state",
placeholder: _vm.trans("configuration.state")
},
domProps: { value: _vm.configForm.state },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"state",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "state"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.zipcode")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.zipcode,
expression: "configForm.zipcode"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "zipcode",
placeholder: _vm.trans("configuration.zipcode")
},
domProps: { value: _vm.configForm.zipcode },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"zipcode",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "zipcode"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.country")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.country,
expression: "configForm.country"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "country",
placeholder: _vm.trans("configuration.country")
},
domProps: { value: _vm.configForm.country },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"country",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "country"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.phone")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.phone,
expression: "configForm.phone"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "phone",
placeholder: _vm.trans("configuration.phone")
},
domProps: { value: _vm.configForm.phone },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"phone",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "phone"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.fax")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.fax,
expression: "configForm.fax"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "fax",
placeholder: _vm.trans("configuration.fax")
},
domProps: { value: _vm.configForm.fax },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"fax",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "fax"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.email")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.email,
expression: "configForm.email"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "email",
placeholder: _vm.trans("configuration.email")
},
domProps: { value: _vm.configForm.email },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"email",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "email"
}
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-12 col-sm-3" }, [
_c(
"div",
{ staticClass: "form-group" },
[
_c("label", { attrs: { for: "" } }, [
_vm._v(_vm._s(_vm.trans("configuration.website")))
]),
_vm._v(" "),
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.configForm.website,
expression: "configForm.website"
}
],
staticClass: "form-control",
attrs: {
type: "text",
name: "website",
placeholder: _vm.trans("configuration.website")
},
domProps: { value: _vm.configForm.website },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.configForm,
"website",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c("show-error", {
attrs: {
"form-name": _vm.configForm,
"prop-name": "website"
}
})
],
1
)
])
]),
_vm._v(" "),
!_vm.setupWizard
? _c(
"button",
{
staticClass:
"btn btn-info waves-effect waves-light m-t-10 pull-right",
attrs: { type: "submit" }
},
[_vm._v(_vm._s(_vm.trans("general.save")))]
)
: _vm._e()
]
)
])
])
]
),
_vm._v(" "),
!_vm.setupWizard
? _c("div", { staticClass: "col-12 col-sm-5 hidden-sm-down p-0 pr-3" }, [
_c("div", { staticClass: "card border-left" }, [
_c("div", { staticClass: "card-body" }, [
_c("div", { staticClass: "row" }, [
_c(
"div",
{ staticClass: "col-12 col-sm-6" },
[
_c("upload-image", {
attrs: {
id: "logo",
"button-text": _vm.trans("general.choose_logo"),
"upload-path": "/configuration/logo",
"remove-path": "/configuration/logo/remove",
"image-source": _vm.logo
},
on: { uploaded: _vm.updateLogo, removed: _vm.updateLogo }
})
],
1
),
_vm._v(" "),
_c(
"div",
{ staticClass: "col-12 col-sm-6" },
[
_c("upload-image", {
attrs: {
id: "icon",
"button-text": _vm.trans("general.choose_icon"),
"upload-path": "/configuration/icon",
"remove-path": "/configuration/icon/remove",
"image-source": _vm.icon
},
on: { uploaded: _vm.updateIcon, removed: _vm.updateIcon }
})
],
1
)
]),
_vm._v(" "),
_c("div", { staticClass: "table-responsive" }, [
_c(
"table",
{ staticClass: "table table-sm custom-show-table" },
[
_c(
"tbody",
_vm._l(_vm.configForm, function(config, key) {
return key != "config_type" &&
key != "errors" &&
key != "originalData" &&
key != "autoReset"
? _c("tr", [
_c("td", [
_vm._v(
_vm._s(_vm.trans("configuration." + key))
)
]),
_vm._v(" "),
_c("td", [
key == "institute_foundation_date"
? _c("span", [
_vm._v(
_vm._s(
_vm._f("moment")(_vm.configForm[key])
)
)
])
: _c("span", [
_vm._v(_vm._s(_vm.configForm[key]))
])
])
])
: _vm._e()
}),
0
)
]
)
])
])
])
])
: _vm._e()
])
}
var staticRenderFns = []
render._withStripped = true
/***/ }),
/***/ "./resources/js/views/configuration/basic/form.vue":
/*!*********************************************************!*\
!*** ./resources/js/views/configuration/basic/form.vue ***!
\*********************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _form_vue_vue_type_template_id_20cf2fbd___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./form.vue?vue&type=template&id=20cf2fbd& */ "./resources/js/views/configuration/basic/form.vue?vue&type=template&id=20cf2fbd&");
/* harmony import */ var _form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./form.vue?vue&type=script&lang=js& */ "./resources/js/views/configuration/basic/form.vue?vue&type=script&lang=js&");
/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
/* normalize component */
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
_form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
_form_vue_vue_type_template_id_20cf2fbd___WEBPACK_IMPORTED_MODULE_0__["render"],
_form_vue_vue_type_template_id_20cf2fbd___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
false,
null,
null,
null
)
/* hot reload */
if (false) { var api; }
component.options.__file = "resources/js/views/configuration/basic/form.vue"
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
/***/ }),
/***/ "./resources/js/views/configuration/basic/form.vue?vue&type=script&lang=js&":
/*!**********************************************************************************!*\
!*** ./resources/js/views/configuration/basic/form.vue?vue&type=script&lang=js& ***!
\**********************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/babel-loader/lib??ref--4-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./form.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/views/configuration/basic/form.vue?vue&type=script&lang=js&");
/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
/***/ }),
/***/ "./resources/js/views/configuration/basic/form.vue?vue&type=template&id=20cf2fbd&":
/*!****************************************************************************************!*\
!*** ./resources/js/views/configuration/basic/form.vue?vue&type=template&id=20cf2fbd& ***!
\****************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_template_id_20cf2fbd___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./form.vue?vue&type=template&id=20cf2fbd& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/views/configuration/basic/form.vue?vue&type=template&id=20cf2fbd&");
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_template_id_20cf2fbd___WEBPACK_IMPORTED_MODULE_0__["render"]; });
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_template_id_20cf2fbd___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
/***/ })
}]);
//# sourceMappingURL=setup.js.map?id=82d5a5975396ec5c91ae