Add or Minus Years from Carbon Date in Laravel

The best part of Laravel is it has a variety of open-source plugins available. One of them is Carbon. Carbon is a date-time package for Laravel or any other PHP-based framework. In this blog, we will see some practical examples to add or remove years from carbon date objects. Carbon provides a function for adding

Learn More

Laravel File Download and Upload

Nowadays, File upload and download functionality is almost mandatory. Laravel provides simple and easy ways to upload and download files. You can store these files in a public folder or local storage. In this blog, we will see some practical examples to upload and download files in Laravel. Here, we have used Test Controller and

Learn More

PHP File Download and Upload

Nowadays, File upload and download functionality is almost mandatory. PHP provides simple and easy ways to upload and download files. You can store these files in a public folder or local storage. In this tutorial, we will show you how you can upload files of various formats like .zip, .pdf, .docx, and .ppt, as well

Learn More

Submit Form via AJAX in JQuery

Generally, the form is submitted to the server using a specified URL in the action attribute but this method refreshes the web page. So whenever you need to submit a form without reloading the page then you can use AJAX upload using jQuery. The jQuery submit() method is useful to handle the form submission process

Learn More

Form Validation using jQuery Validate plugin

Data validation before posting to a server is an important essential part of web development. In the front-end, there are many options available to validate user input like custom validation, validation with a required attribute, or using a library for validation. There are many libraries or plugins available to perform front-end validation in jQuery. The

Learn More

How to Use & Integrate CKEditor in Laravel?

In this tutorial, we are going to create a new Laravel application for creating blogs or posts. While creating a blog we’ll use CKEditor to take input or HTML input and store it in our database. Before starting, let’s understand why CKEditor is useful compared to HTML elements like text-area or inputs. The CKEditor is

Learn More

Disable Weekends in jQuery Datepicker

In web development, taking date input from users commonly occurs. The jQuery Date picker provides an excellent user interface and user experience. It also provides many functionalities like start date, end date, format date for user display and more. While taking date input sometimes we need to skip some dates or need to force a

Learn More

Disable Specific Dates in jQuery Datepicker

In web development, taking date input from users commonly occurs. The jQuery Date picker provides an excellent user interface and user experience. It also provides much functionality like start date, end date, format date for user display, and more. While taking data input sometimes we need to skip some dates or need to force users

Learn More