Blog

Change Primary Site MS

User Change primary site in multisite wordpress Assistant Changing the **primary site** in a **WordPress Multisite** setup requires updating settings in the database and possibly modifying your site's configuration files. Follow these steps carefully: — ### **Step 1: Backup Everything** Before making any changes, ensure you have a complete **backup** of your database and files. […]

Laravel Cache Store OTP

User LARAVEL cache store otp for 10 mins Assistant You can store an OTP in Laravel's cache for 10 minutes using the `Cache` facade. Here's how you can do it: ### **Storing the OTP in Cache** use IlluminateSupportFacadesCache; $otp = rand(100000, 999999); // Generate a 6-digit OTP $phone = '1234567890'; // Example identifier Cache::put("otp_{$phone}", $otp, […]

Using PhonePe Cashback Gift Card

User Use phone pay cashback gift card Assistant If you have received a **PhonePe Cashback Gift Card**, you can use it for transactions on PhonePe. Here’s how: ### **Steps to Use PhonePe Cashback Gift Card:** 1. **Open the PhonePe App** on your mobile. 2. **Go to "My Money"** from the homepage. 3. Tap on **"Gift […]

Clear for Next Steps

User All things are cleared from my side. No concern left. I will start quickly after approval from next week Correct above sentence Assistant Everything is clear from my side. I have no concerns left. I will start quickly after approval next week.

OTP Verification and Password Reset

User <script> import { ref, inject, onMounted } from "vue"; import { useForm, useField } from "vee-validate"; import { useAuthStore } from "@/stores/auth"; import { useRouter } from "vue-router"; import publicApi from "@/publicApi"; import SingleColumn from "@/layouts/SingleColumn.vue"; const authStore = useAuthStore(); const router = useRouter(); const apiUrl = inject<string>("apiUrl"); const showPassword = ref(false); const alertMessage […]

Debugging Reset Password Form

User <script> import { ref, inject, onMounted } from "vue"; import { useForm, useField } from "vee-validate"; import { useAuthStore } from "@/stores/auth"; import { useRouter } from "vue-router"; import publicApi from "@/publicApi"; import SingleColumn from "@/layouts/SingleColumn.vue"; const authStore = useAuthStore(); const router = useRouter(); const apiUrl = inject<string>("apiUrl"); const showPassword = ref(false); const alertMessage […]

Password Reset Function Issues

User <script> import { ref, inject, onMounted } from "vue"; import { useForm, useField } from "vee-validate"; import { useAuthStore } from "@/stores/auth"; import { useRouter } from "vue-router"; import publicApi from "@/publicApi"; import SingleColumn from "@/layouts/SingleColumn.vue"; const authStore = useAuthStore(); const router = useRouter(); const apiUrl = inject<string>("apiUrl"); const showPassword = ref(false); const alertMessage […]

Vuetify Pros and Cons

User Recently I have used vuetify and it seems a Amazing superset framework for vue js developer specially for material designer May be there are some pros and cons Make above more good Assistant Recently, I had the opportunity to work with Vuetify, and I found it to be an exceptional framework for Vue.js developers, […]

Vuetify LinkedIn Post UI

User Describe use of vuetify in vue js for linkedi post Assistant ### **Using Vuetify in Vue.js for a LinkedIn Post-Like UI** Vuetify is a popular UI framework for Vue.js that provides a Material Design-based component library, making it easy to create responsive and visually appealing applications. If you're building a LinkedIn-style post UI using […]

Vue OTP Password Reset

User <script> import { ref, inject, onMounted } from "vue"; import { useForm, useField } from "vee-validate"; import { useAuthStore } from "@/stores/auth"; import { useRouter } from "vue-router"; import publicApi from "@/publicApi"; import SingleColumn from "@/layouts/SingleColumn.vue"; const authStore = useAuthStore(); const router = useRouter(); const apiUrl = inject<string>("apiUrl"); const showPassword = ref(false); const alertMessage […]