Laravel Localization – Multi Language Website
In this tutorial, you'll learn how to create an application that is in multiple languages. Laravel localization is a convenient way to do that....
How To Use Laravel Gates And Policies?
Authentication is an important process in every application, but sometimes you need to authorize the user. For example, think of a user who is...
Multiple Database Connections In Laravel
Sometimes, our application needs multiple database connections. By default, Laravel is configured with the default database connection. In this tutorial, you're going to learn...
Customize Laravel Timestamps
Usually, Laravel Eloquent models believe that your table has timestamp fields like created_at and updated_at. What if you want to change the default date...
Advanced Laravel Blade Directives
Laravel presents a powerful templating engine called a laravel blade. Blade provides very helpful directives. It will compiled in plain PHP in views and...
Install Vuetify In Laravel
Vuetify is a Vue UI material library that helps you to create attractive applications with no designing skills required. Installing Vuetify in direct Vue...
Custom Validation Rules In Laravel
In this chapter, you are going to learn how to create custom validation rules in laravel. Although, Laravel provides lots of validations rules. But...
Api Authentication With Laravel Passport
In this tutorial, I'll cover API authentication with laravel passport. I'm using laravel 7.x throughout this tutorial. Laravel passport introduced in laravel 5.3. Make...
Laravel Email Verification (version 5.7-7) Tutorial
Most of the web applications require customers to confirm their email addresses after signing up. Laravel provides convenient functionality for email verification. Laravel sends...
What Is Accessors & Mutators In Laravel?
In this tutorial, you'll learn the way to use laravel accessors and mutators. Keep in mind that, accessors are getters and mutators are setters....