Historically, PHP has been a “loosely typed” language, with auto-converting between strings/integers and potential “magic” or bugs because of that.…
PHP
There are quite a lot of articles/videos on Laravel + Vue CRUD, but not enough is published on the newest…
Today I want to talk about a feature of Laravel which is really useful but can be potentially difficult to…
Service Container is probably one of the most confusing topics for beginners in Laravel. The official docs explain it well…
When validating forms or API requests, sometimes the rule for one field depends on values from other fields. In this…
Have you ever seen the error message **Target class does not exist** when using Laravel routes? Let’s see this common…
Laravel’s RateLimiter clear method enables dynamic rate limit resets based on application conditions. This utility allows programmatic quota management, making…
The Laravel Zap package is a flexible schedule management system with a deep Laravel integration. With Zap, you can create…
Useful Laravel links to read/watch for this week of June 19, 2025. Source: Read MoreÂ
To achieve dynamic behavior in Laravel projects, you can use JavaScript, and Vue.js is one of the most popular solutions.…
Laravel’s fluent() helper function simplifies multi-dimensional array handling by providing intuitive access to nested data structures. This utility enables dot…
The laravel-image-transform-url package offers a lightweight and expressive way to manipulate image URLs by appending transformation query parameters. The post…
Quite often I see people searching for “cron” in the Laravel context. The framework has a mechanism on top of…
Have you ever tried to import 1 million rows from CSV into the DB? It’s a tricky task that can…
The laravel-image-transform-url package offers a lightweight and expressive way to manipulate image URLs by appending transformation query parameters. The post…
The Laravel team released v12.19.0 with a UseEloquentBuilder PHP attribute, an AsFluent model cast, FailOnException job middleware, assert redirect back…
Laravel’s withoutDefer and withDefer test helpers enable precise control over deferred operation execution during testing. These utilities allow immediate execution…
An Elasticsearch implementation of Laravel’s Eloquent ORM Source: Read MoreÂ
Build AI Agents That Run Your Day – While You Focus on What Matters By Manuel Lemos One of the…
In default Laravel, there’s one constant responsible for the redirection of logged-in users. How is it used in Breeze? Source:…