Browsing Tag
Laravel5.6
In this article, we will discuss how Laravel Form Validations work. As we know, Laravel provides lots of features to reduce the repetitive task. Laravel provides an easy way to apply server side validations.Prerequisite, we need a working…
Laravel View X-Ray
In this article, I'm going to share with you one wonderful Laravel resource "Laravel View X-Ray". Sometimes it might be hard to figure out, which part of the output HTML was rendered using which template.Installation Laravel View X-Ray…
Google Map API – Get Geolocation using City/Locality
In this post, we will discuss Google Map API – Get Geo Location using City/Locality. I'm assuming, most users are familiar with the Google Maps. Google provides a flexible API to work with the Maps easily. If you want to know more about…
Laravel Custom Artisan Command
In this article, we will discuss Laravel Custom Artisan Command. Laravel provides a command-line interface which is known as Artisan. It provides lots of helpful commands which help us at the time of development.Are you familiar with the…
Laravel 5.6 API Authentication Passport
In this article, we will discuss the Laravel 5.6 API Authentication Passport. Laravel provides an easy way to perform authentication and API's use tokens to authenticate the user. Because API's not maintains any session between request.In…
Laravel 5.6 Custom Token Base API Authentication
In this article, we will discuss how to create Laravel 5.6 Custom Token Base API Authentication. As we discuss the JWT Auth in our previous article. But Laravel is open to creating a custom authentication for our API's. I’m assuming you are…
Laravel 5.6 JWT Auth for API
In this article, we will discuss Laravel 5.6 JWT Auth. Firstly, you need to know what is JWT. JWT (JSON Web Tokens), it allows us to represent user data in a secure manner. JWT Authentication is used when we work with API. When user sign-in…