Best of Laravel News — March 2024
- 1
- 2
Laravel News·2y
Easily create complex database queries with the Query Enrich Package
Laravel Query Enrich simplifies the creation of complex database queries in Laravel. It provides examples of fetching orders placed in the last 7 days, using the avg function for grabbing average monthly prices for oil and gas, using exists queries, and getting a full name using concatws. The complete documentation and Github repository for the Query Enrich Package can be found.
- 3
Laravel News·2y
Tablar Kit: UI Components for Tablar Admin Dashboards
Tablar Kit is a UI kit for Laravel Tablar admin dashboards that adds visually appealing and user-friendly components, such as form components, dropdowns, file upload with on-the-fly image editing, optimized data tables, and a rich text editor.
- 4
Laravel News·2y
How to Detect n+1 Queries in PHP
The n+1 query problem is a performance issue in software development where unnecessary database calls are made. To detect n+1 queries, developers can use Application Performance Monitoring (APM) tools. Resolving n+1 queries can be done through techniques like eager loading, join queries, or caching.
- 5