Top PHP Frameworks To Use in 2024

PHP frameworks are software libraries that provide a collection of functions and tools to help developers build web applications more efficiently. They aim to simplify the development process by providing pre-written code that can be reused across different projects, reducing the amount of time required to build a web application from scratch. In this article, we will explore … Read more

Laravel 9 Form Submit Using jQuery Ajax Using Controller

In this tutorial, we will learn how to submit a form using jQuery Ajax in Laravel 9. Ajax allows us to submit form data without refreshing the page, providing a better user experience. Sure, here’s a summary of each step: Step 1: Set up Laravel 9 Step 2: Create a Form Step 3: Set up the Route Step … Read more

Laravel 9 Create Custom Artisan Command Example

Create a custom artisan command example; Through this tutorial, we will learn how to create and use a custom artisan command in laravel 9 apps. Laravel 9 Create Custom Artisan Command Example Use the following steps to create and use custom artisan command in laravel 9 apps: Laravel is a popular PHP framework that provides various features … Read more

Laravel 9 Vue JS Post Axios Request Tutorial

Laravel 9 Axios post request example; In this tutorial, we will learn how to send form data with Vue js using Axios post HTTP request in laravel. This tutorial will guide us step by step on how to send form data to the controller using axios post HTTP request in laravel 9 with Vue js. … Read more

Laravel 9 Multiple Image Upload using jQuery Ajax Tutorial

In this tutorial, we will be showing you how to upload multiple images using jQuery ajax with previews in a Laravel 9 application. Before uploading these images, we will also be validating the image mime type, size, height, and width on the server-side. Use the following step to upload multiple image using ajax with preview in laravel 9 … Read more

Laravel 9 Rest API CRUD Example Tutorial

Laravel 9 Rest API crud with passport auth example; Through this tutorial, we will learn how to create a restful crud API with passport auth in laravel 9 apps. In RESTful APIs, use the HTTP verbs/methods as actions, and the endpoints are the resources acted upon. will be using the HTTP verbs for their semantic … Read more

Laravel 9 Form Submit Using jQuery Ajax Example

This tutorial demonstrates how to submit a form in Laravel 9 using jQuery Ajax with client-side validation. The default form processing method involves sending form data to the server via POST or GET, but Ajax is a preferred method for submitting forms using JavaScript or XHR. To accomplish this, follow the steps below: Laravel 9 Form Submit Using jQuery … Read more

Install LAMP (Linux, Apache, MySql & PHP) on Ubuntu 20.04 AWS EC2

In this tutorial, we will guide you through the step-by-step process of installing LAMP (Linux, Apache, MySQL, PHP) on an Ubuntu 20.04 AWS EC2 instance. How to Install LAMP (Linux, Apache, MySql & PHP) on Linux Ubuntu 20.04 AWS EC2 Step 1 – Launching a Virtual Machine Log into the AWS EC2 Management Console, and click … Read more

Angular 13 Swiper Image Touch Slider Example Tutorial

This tutorial will guide you on how to create a touch-enabled image/content slider or carousel in an Angular 13 application using the ngx-useful-swiper npm package. You will also learn about the various features of Swiper, including library agnosticism, touch movement, mutation observer, rich API, full RTL support, multi-row slides layout, transition effects, two-way control, full navigation control, flexbox layout, the most flexible slides layout grid, parallax … Read more

Angular 13 Get Current Location Latitude and Longitude

In this tutorial, we’ll explore how to obtain the current location’s latitude and longitude using the Google AGM core package in Angular 13’s Google Maps. We’ll cover the process of retrieving the current location’s latitude and longitude in Angular 13, and demonstrate how to accomplish this using the Google AGM core package. How to get … Read more