Browsing Category
Laravel
Explanation of Laravel Localization
In this article, we will discuss the Laravel Localization. As we know, Laravel provides rich features and Laravel Localization is one of the best features of Laravel.
Introduction Laravel Localization
Laravel Localizations feature provides…
Most Usable Laravel String Helpers
In this article, we will discuss Most Usable Laravel String Helpers. As we know, Laravel provides rich features to make development more flexible. Sometimes we need "String Helpers" to manipulate string value. In core project, we need to…
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…
Laravel 5.6 – Debugging with dump and dd Functions
In this article, we will discuss how can we handle Laravel Debugging. Laravel offers two effective and useful debugging methods dd() and dump(). As we know, Laravel provides rich features to fulfill our minor to complex requirements. I'm…
Handle Query Logging – Laravel 5.6
In this article, we will discuss how to handle query logging in Laravel. I'm assuming you are much familiar with the Laravel as you are reading this. Laravel optionally log all queries that have been running in the current request in…
How to Change The Naming of Datetime Fields in Laravel
In this article, we will discuss how to change the naming of datetime fields in Laravel. As we know, Laravel provides rich features to fulfill our needs. It's easy to change the naming of datetime fields.
Follow the example for…
Handling Emails in Laravel Mailable
In this article, We will discuss how to handle Emails with Laravel Mailable.Before proceeding, I'm assuming you are familiar with the basics of the Laravel framework. If no then you can start with given articles.Laravel Setup…