Black Friday 2022 on Laravel Daily
As everyone is doing Black Friday deals, we also have an offer for you. In fact, a "get-3-for-1" offer.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
As everyone is doing Black Friday deals, we also have an offer for you. In fact, a "get-3-for-1" offer.
When working with money in your Laravel projects, whether it's product prices or invoice total order amounts, we need to be extremely careful not to miscalculate something. Luckily, there are best practices and tools to help us with that, let's explore them in this article.
Back in 2017, Adam Wathan made a great talk at Laracon called CRUDdy By Design, which has been recommended and reshared online for years. I decided to summarize it in text form, so instead of watching all 40 minutes, you could read this quicker, also with more examples and my own opinion.
Under the hood, Laravel uses the Carbon library for many datetime operations. By default, every created_at/updated_at field in every Model is casted to Carbon objects, so you may write `$user->created_at->diffForHumans()`. But there are many more possibilities to that method, let's explore them.
This is a demo Laravel project to manage support tickets between regular users, agents, and admins, aimed at junior developers to practice their skills. This article contains both the task and its possible solution, with the repository link at the end.
This is a demo Laravel project aimed at junior developers to practice their skills. This article contains both the task and its possible solution, with the repository link at the end.
This is a demo Laravel project aimed at junior developers to practice their skills. This article contains both the task and its possible solution, with the repository link at the end.
Eloquent is a great feature of Laravel, but also great is the list of packages that add more features on top of the framework. Let's explore them, in this article! The title says 20 packages, but there are quite a few alternatives mentioned along the way, so the actual number is even bigger than this. Ready? Let's jump in!
Working with a calendar can be quite common, so in this tutorial, we will use the popular [FullCalendar](https://fullcalendar.io/) library in a Laravel project and create a simple demo.
These days, security is very important. That's why many applications implement two-factor authentication. In this tutorial, I will show you how to do that in Laravel, using Laravel Notifications and sending a one-time password via email or SMS.