[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: edit.vue
<template> <div> <!-- breadcrumbs Start --> <breadcrumbs :items="breadcrumbs" :current="breadcrumbsCurrent" /> <!-- breadcrumbs end --> <div class="row"> <div class="col-12 col-xl-3"> <SettingsSidebar /> </div> <div class="col-12 col-xl-9"> <form role="form" @submit.prevent="updateCurrency" @keydown="form.onKeydown($event)"> <div class="card"> <div class="card-header setings-header"> <div class="col-xl-4 col-4"> <h3 class="card-title"> {{ $t("setup.currencies.edit.form_title") }} </h3> </div> <div class="col-xl-8 col-8 float-right text-right"> <router-link :to="{ name: 'currencies.index' }" class="btn btn-dark float-right"> <i class="fas fa-long-arrow-alt-left" /> {{ $t("common.back") }} </router-link> </div> </div> <div class="card-body"> <div class="form-group"> <label for="name">{{ $t("common.name") }} <span class="required">*</span></label> <input id="name" v-model="form.name" type="text" class="form-control" :class="{ 'is-invalid': form.errors.has('name') }" name="name" :placeholder="$t('common.name_placeholder')" /> <has-error :form="form" field="name" /> </div> <div class="form-group"> <label for="code">{{ $t("common.code") }} <span class="required">*</span></label> <input id="code" v-model="form.code" type="text" class="form-control" :class="{ 'is-invalid': form.errors.has('code') }" name="code" :placeholder="$t('common.code_placeholder')" /> <has-error :form="form" field="code" /> </div> <div class="form-group"> <label for="symbol">{{ $t("setup.currencies.common.symbol") }} <span class="required">*</span></label> <input id="symbol" v-model="form.symbol" type="text" class="form-control" :class="{ 'is-invalid': form.errors.has('symbol') }" name="symbol" :placeholder="$t('setup.currencies.common.symbol_placeholder') " /> <has-error :form="form" field="symbol" /> </div> <div class="form-group"> <label for="position">{{ $t("setup.currencies.common.currency_position") }}</label> <select v-model="form.position" class="form-control" :class="{ 'is-invalid': form.errors.has('position') }" name="position"> <option value="left"> {{ $t("setup.currencies.common.position_drop_down_item_one") }} </option> <option value="right"> {{ $t("setup.currencies.common.position_drop_down_item_two") }} </option> </select> <has-error :form="form" field="position" /> </div> <div class="form-group"> <label for="status">{{ $t("common.status") }}</label> <select id="status" v-model="form.status" class="form-control" :class="{ 'is-invalid': form.errors.has('status') }"> <option value="1">{{ $t("common.active") }}</option> <option value="0">{{ $t("common.in_active") }}</option> </select> <has-error :form="form" field="status" /> </div> <div class="form-group"> <label for="note">{{ $t("common.note") }}</label> <textarea id="note" v-model="form.note" class="form-control" :class="{ 'is-invalid': form.errors.has('note') }" :placeholder="$t('common.note_placeholder')" /> <has-error :form="form" field="note" /> </div> </div> <div class="card-footer"> <v-button :loading="form.busy" class="btn btn-primary"> <i class="fas fa-edit" /> {{ $t("common.save_changes") }} </v-button> </div> </div> </form> </div> </div> </div> </template> <script> import axios from "axios"; import Form from "vform"; export default { middleware: ["auth", "check-permissions"], metaInfo() { return { title: this.$t("setup.currencies.edit.page_title") }; }, data: () => ({ breadcrumbsCurrent: "setup.currencies.edit.breadcrumbs_current", breadcrumbs: [ { name: "setup.currencies.edit.breadcrumbs_first", url: "home", }, { name: "setup.currencies.edit.breadcrumbs_second", url: "setup.index", }, { name: "setup.currencies.edit.breadcrumbs_third", url: "currencies.index", }, { name: "setup.currencies.edit.breadcrumbs_active", url: "", }, ], form: new Form({ name: "", note: "", code: "", symbol: "", position: "left", status: 1, }), loading: true, }), mounted() { this.getCurrency(); }, methods: { // get category async getCurrency() { const { data } = await axios.get( window.location.origin + "/api/currencies/" + this.$route.params.slug ); this.form.name = data.data.name; this.form.code = data.data.code; this.form.symbol = data.data.symbol; this.form.position = data.data.position; this.form.note = data.data.note; this.form.status = data.data.status; }, // update category async updateCurrency() { await this.form .patch( window.location.origin + "/api/currencies/" + this.$route.params.slug ) .then(() => { toast.fire({ type: "success", title: this.$t("setup.currencies.edit.success_msg"), }); this.$router.push({ name: "currencies.index" }); }) .catch(() => { toast.fire({ type: "error", title: this.$t("common.error_msg"), }); }); }, }, }; </script>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.71 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002