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....
How To Use Soft Delete In Laravel

How To Use Soft Delete In Laravel?

0
In this tutorial, You are going to learn about soft delete in laravel. By using soft delete, instead of removing data from the database,...
Laravel Datatables

How To Use Yajra Datatables Laravel?

2
Almost all of the web applications uses datatables to listing data. With using jQuery Datatables you can create powerful and manageable datatables. Then why...
Send Mail Using Queue In Laravel

How To Send Mail Using Queue In Laravel?

0
Sending emails using laravel mail queue reduces the response time of application. Suppose you need to send multiple emails, you need to wait for...