PHP 8.2 is the latest version of the popular server-side scripting language, PHP. It was released in November 202. The new release includes several new features and improvements to existing functionality. Some important features are System Improvements, Sensitive Parameter Attributes, Fetch enum properties in constant expressions, Constants supported in traits, Readonly Classes, and Random Extension. […]
How to Install and Configure PHP Composer in MacOS
The composer is a dependency manager that helps in managing any third-party packages and libraries. If you are working on any PHP framework then the composer plays a major role. You can install the required libraries inside the application. It is an open-source tool and is available for all platforms like Windows, Linux, and MacOS. […]
How to Create a Virtual Host in XAMPP For PHP in Windows
The Virtual Host in PHP provides a domain URL in the local system. It allows you to run your application on a domain virtually. You can configure Apache virtual host easily for your application. If you create the Apache Virtual Host in PHP application then it will be super easy for you. You can run […]
How to Import CSV File Data in Laravel 6
Sometimes we have the raw data in any format which can be inserted directly into the database. In other cases, data inserting manually one by one into the database is a time taking process. If you are creating any inventory or shopping cart application in which you have to insert product details. So the single-single product entry into the database from the dashboard […]
How to Implement Datatable Column Filter in Laravel 6
Datatable provides an easy way to manage, filter, sort, and arrange the data in the form of a table. If I talk about the Jquery Datatables filter in Laravel 6 then I had already posted a tutorial on Yajra datatable implementation. In that tutorial, I had shown you the filter option which is provided by […]
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 […]
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 […]