Laravel 11: New Artisan "make:interface" Command
Laravel 11 introduced new Artisan commands. Let's look at the `make:interface` command in this post.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
Laravel 11 introduced new Artisan commands. Let's look at the `make:interface` command in this post.
Laravel 11 introduced new Artisan commands. Let's look at the `make:enum` command in this post.
Laravel 11 introduced a few new Artisan commands. Let's look at the `make:class` command in this post.
Laravel 11 is one of the most exciting versions of the framework for a long time. Quite a lot of changes and new features, let's explore them!
Laravel 11 uses SQLite as the default database for the local environment. Let's see how we can change it to MySQL.
Caching with Redis is one of the common requirements in Laravel job descriptions. But it's not complicated at all, this tutorial will show you the fundamentals.
In Laravel, if we want to have a DB value calculated on the fly, we often use Mutators. But we can also perform calculations on the database level with generated virtual/stored columns.
All of you probably use the Carbon class in Laravel for date/time operations. But have you heard about CarbonImmutable? It may rescue you from one potential bug. Let me explain its use case in this short tutorial.
Looking at Laravel job descriptions, you will find Redis quite often. This tutorial will cover the basics of using it with Laravel and how to use it in your projects.
Many Laravel developer jobs require not only creating APIs but also interacting with other 3rd-party APIs. In this lengthy tutorial, we will show four examples of such APIs.