framework
framework copied to clipboard
The Laravel Framework.
### Laravel Version 11.x ### PHP Version 8.4 ### Database Driver & Version pgsql 17 ### Description # Type Mismatch in Polymorphic Relationships When Using PostgreSQL ## Description When using...
Looks something like this in the IDE: 
### Laravel Version 11.33.2 ### PHP Version 8.3 ### Database Driver & Version _No response_ ### Description when I pass `x-transition` to a component it renders as `x-transition="x-transition"` How do...
### Summary This PR fixes an issue where `php artisan serve` throws an exception on Windows when a log line does not contain a valid request port. ### Problem "process...
Not sure if this is automated your side, but I noticed it - so here we are. [v6 is the latest](https://github.com/actions/checkout/releases/tag/v6.0.1) Presume it's like it in other packages, but leaving...
When writing custom validation rules for array items, accessing sibling data requires manual path manipulation. Consider an API for bulk order creation: ``` { "orders": [ { "customer_id": 123, "items":...
## Description Fixes `@json` Blade directive incorrectly parsing complex expressions with nested structures. Replaces `explode()` with tokenizer-based parser that respects nesting depth. ## Problem The directive would split on commas...
## Current Currently, `Storage::fake()` only accepts a string. ## New This update allows `Storage::fake()` to accept backed Enums for the disk name, aligning its behavior with `Storage::disk()`. `Storage::disk(Disk::Local)` ✅ `Storage::fake(Disk::Local)`...
### Laravel Version 12.42.0 ### PHP Version 8.5.0 ### Database Driver & Version MySQL 8.0.42 ### Description When running php artisan schedule:run, an ErrorException: Undefined variable $result is thrown in...
When serializing models to arrays/JSON, Eloquent currently considers _all_ Attribute-based accessors via `getMutatedAttributes()`, even for attributes that are not arrayable (hidden or not visible). This can: - Invoke accessors that...