In WordPress, you can create your own custom template. This custom template can be used as the main template inside your pre-installed theme. The architecture of WordPress is very easy to understand. WordPress allows us to customize any pre-built theme or by using any theme you can create any custom template page […]
Find Nearest Location By Latitude and Longitude in Laravel 6
The Google Map is the best example of displaying a near by location using the latitude and the longitude. Locations are basically a set of latitude and longitude. It means we can find the distance between two coordinates. That is the source and the destination latitude, longitude. So basically in this post, I will be […]
How to Implement Google Autocomplete Address in Laravel 6
Google consists of all the addresses which have been listed on Google map. These addresses are basically listed on the basis of latitude and the longitude. It defines co-ordinate points on the earth. So, every location has a fixed set of the latitude and the longitude. We can make a custom list of addresses and […]
How to Convert HTML Template to WordPress
You can convert HTML to WordPress very easily. As we know, WordPress is built on PHP. So, we usually convert any HTML to PHP by separating the header, footer, and sidebar. Similarly, we can do the same stuff in WordPress. You can convert any HTML template to WordPress and make custom WordPress HTML templates. WordPress […]
How to Download and Install WordPress in Localhost
WordPress is a dominant CMS (content management system) that is designed to manage the contents. Due to its feature, WordPress is becoming more trendy these days. So, through this post, I will be diving you in WordPress development. That’s why I am going to start with the scrape. Hence, before starting with the development, we’ll […]
Drag and Drop File Upload in Laravel 6 Using Dropzone js
Drag and drop file upload in Laravel 6 can be possible by Dropzone js. Dropzone js is an open-source library that provides us a feature for uploading files by drag and drop. By using Dropzone js, you can upload single or multiple files in Laravel 6. Basically, the Dropzone js works with Ajax. That means the selected images or files will be uploaded asynchronously […]
How to Upload Multiple Images in Laravel 6 with Validation
Multiple file uploads provide an easy way to upload more than one file at the same time. This allows us to select and upload multiple files/images. In Laravel 6, we can upload multiple images with validation easily. In the process of multiple image upload, an array of the file will be created. Then according to the length of the array […]
How to Resize Image in Laravel 6 After Upload
If you are uploading the large image file in the server then it will take up extra spaces of the storage. Then why don’t we resize image before upload. So, that it will reduce image size and will occupy less storage. If the webpage contains the low size image, then it will load fast in the webserver. So, if you resize image before upload, it will make your webpage optimized and fast […]
How to Implement Pagination in Laravel 6 with Example
Displaying a large number of records in a single table is not a big issue. But managing these records properly in a single table can be an issue. Actually, I am talking about the number of rows that will be displayed in a single table. This will become cumbersome of the data within a single […]
Laravel 6 Custom Login and Registration with Session
Have you faced difficulties in creating a custom Laravel login and registration system? If yes, then please follow this post very carefully. Today, I am going to show you how you can create a custom Laravel 6 login and registration. In this procedure, I am not going to use the Laravel predefined user Auth. The […]