Top Menu

To crop and upload an image with jQuery and PHP, you can follow these general steps: Use a jQuery plugin like "Jcrop" to allow the user to select a crop area on the image. When the user has selected the crop area, retrieve the coordinates of the crop area using JavaScript. Send the coordinates to a PHP script on the…

Introduction The Google Cloud Vision API is a powerful tool for analyzing images and detecting information such as text, labels, faces, and landmarks. With the API, you can build applications that can understand images and extract meaningful information from them. In this blog post, we'll show you how to use the Google Cloud Vision API in PHP to detect text…

In this tutorial, we'll be installing and using the Laravel 9 authentication UI tutorial. This tutorial will show you how to create a simple authentication using the Laravel 9 framework and the Laravel UI package. we'll walk you through each step and explain everything in details so you can eassily follow along. Laravel/UI package is a composer package for Laravel…

In this article will provide some of the most important example how to run multiple seeders in laravel 8. This post goes in detailed on how to run multiple seeder in laravel 8. This post goes in detailed on laravel run multiple seeders. you will learn laravel 8 run all seeds. Here, i will give you simple example of how…

Here, i will explain to create data type for create table on database table in laravel framework. In this example you will show how tomigration and how you can run migration in laravel project. $table->bigIncrements('id'); Incrementing ID using a "big integer" equivalent. $table->bigInteger('votes'); BIGINT equivalent to the table $table->binary('data'); BLOB equivalent to the table $table->boolean('confirmed'); BOOLEAN equivalent to the table…

Here, i will explain to create seeder for insert multiple records on database table in laravel framework. In this example you will show how to use seeder and how you can run specific seeder in laravel project. We should know what is database seeder in laravel and why we should use before start example of database seeding. Laravel provides a…

In this tutorial, I would like to interduce with you how to use validation in laravel 8. I will let you know how to implement form input validation in laravel 8. In this tutorial, I will show you how to define laravel validation rules, how to validate input and to display validation errors. We will help you to give example…

One of the biggest reasons that large-scale MySQL sites slow down is because their database hasn’t been optimized. A lot of older sites are still using the MyISAM storage engine in their database. currently, InnoDB has been shown to perform better and be more reliable.  A big reason to use InnoDB over MyISAM is the lack of full table-level locking.…

Sometimes duplicate data is irritated you, sometimes it just makes it difficult to understand your data. Use conditional formatting to find and highlight duplicate data. That way you can review the duplicates and decide if you want to remove them. Follow given below steps Select the cells you want to check for duplicates.Click Home > Conditional Formatting > Highlight Cells…

Here we discuss how to add toaster notification in any version of laravel application. In this post, we will look at how we can utilize any version of Laravel’s flash helper function to show toaster notifications in our application.When user signup or sign in on your website, or perform an action, it’s always recommended to notify the user about progress…

Close