Blog

Custom Password Reset Email

User Assistant To use a custom email template for the password reset link email in your Laravel application, you need to customize the notification that sends the email. Here's how you can achieve this: ### Steps to Customize the Email Template 1. **Create a Custom Notification** Laravel uses the `IlluminateAuthNotificationsResetPassword` notification to send the password […]

Add Spaces in Email

User we have db return mail content add space before sending mail Assistant To add spaces in your email content before sending it in a Laravel application, you can process the email content in your mail class or controller before passing it to the mail view. Here's how you can do it: ### Example Implementation […]

API Error Resolution Steps

User Get List Total Records: 1 ## neeraj.tiwari@nethues.com ##08d6cb0b1a == neeraj.tiwari@nethues.com fault: "0" – A general API error occurred: "VRAPI2.INVALID_SEARCH_CONDITION" – "bad search condition provided: wrong argument type nil (expected String)" ## vertical repsonse api Assistant The error message indicates that the API call to VerticalResponse failed because an invalid search condition was provided. The […]

Swiper Slider Left Alignment

User var swiper = new Swiper(".swiperslides", { slidesPerView:3, spaceBetween: 30, centeredSlides: true, autoplay: { delay: 2500, disableOnInteraction: false, }, pagination: false, }); put slider at left side Assistant To position the Swiper slider on the left side of the page, you can wrap it in a container with a `flexbox` layout or apply appropriate `CSS` […]

Owl Carousel RTL Navigation

User var owlid = ""; jQuery(function () { // Owl Carousel var owl = jQuery("#" + owlid); owl.owlCarousel({ items: 1.5, // Slightly more than 1 to show part of the next slide margin: 16, // Adjust margin to control spacing between slides rtl:true, loop: false, nav: true, // Enable navigation arrows dots: false, // Disable […]

Disable Carousel Nav Arrows

User var owlid = ""; jQuery(function () { // Owl Carousel var owl = jQuery("#" + owlid); owl.owlCarousel({ items: 1.5, // Slightly more than 1 to show part of the next slide margin: 16, // Adjust margin to control spacing between slides rtl:true, loop: true, nav: true, // Enable navigation arrows dots: false, // Disable […]

Disable Carousel Arrows Logic

User jQuery(function () { // Owl Carousel var owl = jQuery("#" + owlid); owl.owlCarousel({ items: 1.5, // Slightly more than 1 to show part of the next slide margin: 16, // Adjust margin to control spacing between slides rtl:true, loop: false, nav: true, // Enable navigation arrows dots: false, // Disable dots responsive: { 0: […]

Swiper Loop Configuration

User var swiper = new Swiper(".swiper-container", { slidesPerView: 3, spaceBetween: 30, pagination: { el: ".swiper-pagination", clickable: true, } // , // on: { // slideChangeTransitionEnd: function () { // scaleSlides(); // }, // init: function () { // scaleSlides(); // }, // }, }); loop true Assistant To enable looping in your Swiper configuration, you […]

Swiper Custom Slide Layout

User Slide 1 Slide 2 Slide 3 Slide 4 Slide 5 Slide 6 Slide 7 Slide 8 Slide 9 <script> </script> <script> var swiper = new Swiper(".mySwiper", { slidesPerView: 3, spaceBetween: 30, pagination: { el: ".swiper-pagination", clickable: true, }, }); </script> display 1 and 3rd 80% show and middle one full Assistant To achieve a […]

Custom Swiper Slide Width

User Slide 1 Slide 2 Slide 3 Slide 4 Slide 5 Slide 6 Slide 7 Slide 8 Slide 9 <script> </script> var swiper = new Swiper(".mySwiper", { slidesPerView: "auto", spaceBetween: 30, pagination: { el: ".swiper-pagination", clickable: true, }, }); second and third should not be 100% Assistant If you want the second and third slides […]