12 Laravel Interview Questions: Employer and Candidate
There are many articles with "Laravel interview questions" but they mostly sound like a pub quiz knowledge test. So we prepared our version.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
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.
One of the less-known PHP functions is filter_var(), which checks for string patterns like email/URL/IP address and more. In this post, let's look at five practical examples from open-source projects.
The try-catch PHP operator is very old, and we all know its syntax. But the confusing part is WHEN to use it. In what cases? In this tutorial, I will show practical examples to explain the answer.