This PHP 7 tutorial help to understand type hinting in PHP 7.The Type Hinting help to define arguments data type at the time of function declaration. You will get the fatal exception if the required data type variable not passed into the method.
Events and Listeners Example Using Laravel 9
Events and listeners are two awesome functionality to handle decouple modules in a web application. The laravel Events follow the observer pattern, That allows you to subscribe and listen for various events that occur in your application.
Laravel 9 Form Validation Client-Side Using jQuery
This tutorial help to add client-side validation into laravel form. I have already shared Laravel 5.6 Server Side Validation Example Using Resource Controller.
Basic Authentication in Laravel 9 Using Middleware
This Laravel 9 tutorial help to add basic authentication using laravel middleware. We will create a middleware class in Laravel 9 that authenticates the user using basicauth, After successfully authenticating user, Laravel will process the next request.
LinkedIn OAuth2.0 Authentication Using Rest API and PHP
This PHP tutorial helps to create sign-in and sign-out functionality using LinkedIn rest API. It’s a very common functionality to get user profile information from a linked-in account.