Laravel Passport Multi auth API

Passport API multiple authentications using the custom create guard in laravel. In this post, I will learn you how to make multiple auth with custom guard setting using passport API…

0 Comments

Array in php in details

Arrays in PHP is a type of data structure that allows us to store multiple elements of similar data type under a single variable thereby saving us the effort of…

0 Comments
Read more about the article PHP Namespaces
xr:d:DAF8KgsCj7E:2,j:2988556349640893025,t:24020802

PHP Namespaces

When your project grows in complexity, you’ll need to integrate the code from others. Sooner or later, you’ll find that your code has different classes with the same name. This problem is…

0 Comments

PHP OOP – Traits

The trait keyword is used to create traits. Traits are a way to allow classes to inherit multiple behaviours. Traits provide a way to reuse code across multiple classes without the…

0 Comments

PHP OOP – Interfaces

An Interface allows the users to create programs, specifying the public methods that a class must implement, without involving the complexities and details of how the particular methods are implemented.…

0 Comments

PHP OOP – Abstract Classes

We can not make object of an abstract class. If we want to use it then we can inherit only. Abstract class have two condition compulsary: 1. atleast one abstract…

0 Comments