2 articles
Backend·Aug 26, 2025·3 min read
WhereAll() and WhereAny() in Laravel
Laravel 11 adds whereAll() and whereAny() to Query Builder, making it easier to apply the same conditions across multiple columns.
LaravelBackendPhp
Backend·Aug 28, 2025·6 min read
How to Use DTOs Perfectly in Laravel PHP
DTO (Data Transfer Object) is a design pattern used to transfer data between application layers. This object-oriented approach encapsulates data for efficient and easy transmission
LaravelBackenddtoclean code