DB Transactions In Laravel

db transactions in laravel

Hi readers, If you are new to Laravel or just starting with web development, you might have heard about the term “transactions”. We use transactions in Laravel as an essential concept that is widely used to maintain data consistency. What are Transactions in Laravel? In Laravel, we use Transactions to ensure that the database remains … Read more

How to Add Github Login in Laravel Application

how to add github as social login in laravel

Hi, It’s very easy to add a Github login to your laravel application. Let’s understand how we can do this. So, I’m going to practical example now. Create Github OAuth App Now, you have to go to your GitHub account in your account go to Settings>Developer settings>OAuth Apps, and create your app there. now you … Read more

Building A Rest API With PHP

Building A Rest API With PHP

It’s been a long time since I haven’t written an article but nowadays I’m very much focused on learning new things and upgrading myself. Meantime I got the idea to write about Rest Api so that fellow learners can learn if they don’t know. Before start building a rest API I would love to explain … Read more

Sending Mails Using PHP With Mail Function

sending mails in php using mail function

Today we are going to learn to send emails using PHP. Well, it’s not that hard and basically, this post is designed as a beginner can understand it easily. Introduction to Sending Emails with PHP: Have you ever wondered how websites send you emails, like a confirmation email after you sign up for an account? … Read more

Introduction to the YouTube API for PHP Developers

youtube api for php developers

The YouTube API is a powerful tool for accessing and interacting with YouTube data from your PHP application. With the API, you can search for videos, retrieve channel information, and perform other actions on YouTube. In this tutorial, we’ll go over how to get started with the YouTube API in PHP. Before you begin, you’ll … Read more