In this example you will learn how to manipulate or perform the operations on variables and values using operators in PHP. What are Operators in PHP Operators are symbols that…
In this article you will learn how to store and manipulate strings in PHP. What is String in PHP A string is a sequence of letters, numbers, special characters, and…
Today we will learn PHP Datatypes. PHP supports the following Datatypes: String Integer Float (floating-point numbers - also called double) Boolean Array Object NULL Resource To create variables, these data…
In this article, we will learn php variables and also learn php constant with example. PHP Variables Variables are also used for storing data, such as text strings, numbers, etc.…
Hello artisan, Today I am going to show you laravel Authentication with breeze. In this example, we will learn the laravel authentication system with Breeze. Laravel makes it very efficient…
Hello artisan, Today I am going to show you an interesting topic. Sometimes you want to display previous and next posts in your blog. Laravel makes it very easy to…
Hi, Artisan. today I am going to show you how to get random records from the Database in laravel. Laravel makes it very easy for us. We use inRandomOrder() method…
Hello, artisan today I am going to show you an interesting topic in laravel. In this example you will learn how generate slug form title. This very easy to implement…
Hello artisan, Today I am going to show an interesting topic about fetching user info in Larave 8.0. In Laravel 8.0 you can get Country, City, and address is very…
In this example, we will see how the resource router works. Before that, we will show how normal routes work for the normal crud app. Resource Routing in Laravel 8.0…
In this article we will learn the HTTP Status Codes step by step The status code contains information on the request's state. When a web page or other resource doesn't load properly,…
Binding (or wrapping) code and data together into a single unit are known as encapsulation. For example, a capsule is wrapped with different medicines. Java Encapsulation reduces the code redundancy…
Hiding internal details and showing functionality is known as abstraction. For example phone call, we don't know the internal processing. The user will have the information on what the object…
If one task is performed in different ways, it is known as polymorphism. For example: to convince the customer differently, to draw something, for example, shape, triangle, rectangle, etc. In…
We will one of the most important concept of JAVA OOP is java inheritance. When one object acquires all the properties and behaviors of a parent object, it is known…
In this article, we will learn about objects and classes with real-life examples. Java objects and classes are the main components of JAVA. Object Everything in Java is associated with…
Today I am going to show you how to set up Google Account login with Socialite in laravel 8.0. In this article we use laravel Socialite Login with google Account…