Laravel Localization

Laravel Localization – Multi Language Website

0
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....
Laravel Gates And Policies

How To Use Laravel Gates And Policies?

0
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

Multiple Database Connections In Laravel

0
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

Customize Laravel Timestamps

1
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 Blade Directives

Advanced Laravel Blade Directives

0
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

Install Vuetify In Laravel

1
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

Custom Validation Rules In Laravel

0
In this chapter, you are going to learn how to create custom validation rules in laravel. Although, Laravel provides lots of validations rules. But...
Laravel Passport Rest API

Api Authentication With Laravel Passport

0
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

Laravel Email Verification (version 5.7-7) Tutorial

0
Most of the web applications require customers to confirm their email addresses after signing up. Laravel provides convenient functionality for email verification. Laravel sends...
Laravel Accessor & Mutators

What Is Accessors & Mutators In Laravel?

0
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....