Laravel 11 Mini-CRM for Beginners: Video + Repository
Learning Laravel and want to build your first project? I suggest a task I call "Mini CRM" to manage projects/clients/tasks with simple CRUD.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
Learning Laravel and want to build your first project? I suggest a task I call "Mini CRM" to manage projects/clients/tasks with simple CRUD.
Pest testing framework has many fans, mainly because of its elegant, readable "English language" syntax. In this article, I will show you my 3 favorite `expect()` syntax examples, comparing the same things in Pest vs PHPUnit.
There are many articles with "Laravel interview questions" but they mostly sound like a pub quiz knowledge test. So we prepared our version.
Only this week: I am offering you some discounts on Laravel Daily Premium!
Laravel has API Resources but, loaded with relationships, they may cause performance issues. There are conditional methods to help you avoid it.
After watching the Laracon US live stream on YouTubelast night, I compiled a "quick overview" of 4 BIG things Taylor Otwell introduced on stage.
Service Providers have been the core functionality of Laravel since the beginning. However, in Laravel 11, the list of providers changed, with only `AppServiceProvider` left. So, what do developers need to know now?
We recently noticed a performance issue with Laravel Daily website: the list of courses was loading too slowly. So, this article will be a story of how we fixed the N+1 query problem.
There are two ways to identify a key in Laravel: string 'My profile' or array key 'users.my_profile'. Let me tell my opinion on which one is a better choice.
Clean code is something all devs aim for, right? But what does it ACTUALLY mean? In this tutorial, I will list 6 practical tips for Laravel to write clean code.