framework
framework copied to clipboard
The Laravel Framework.
Taylor, I hope that you will consider this PR given that you have already rejected a similar (but faulty) PR #54907 submitted by @pandiselvamm based on him plagiarising my own...
### Laravel Version 11.23.5 ### PHP Version 8.2.24 ### Database Driver & Version _No response_ ### Description When you're using the cache based maintenance mode, Laravel still tries to create...
This adds Cuid2 support and database tests, non breaking changes for existing supported id generation methods, also adds a config to modify the length of the generated Cuid2. This adds...
### Laravel Version 12 ### PHP Version 8.4 ### Database Driver & Version N/A ### Description Hi, We are finding that variables echoed into Markdown Mailables are not having the...
### Laravel Version 11.41.3 ### PHP Version 8.4.3 ### Database Driver & Version _No response_ ### Description For some reason it seems that calling `/link?url=https://www.foo.com/?utm_campaign=some%20campaign` in my application will fail...
### Laravel Version 11.x ### PHP Version any ### Database Driver & Version irrelevant ### Description This is similar to #53692 but a separate issue. It seems creating a DB...
Follow-up to #54734 resp. #54443 Based on comments https://github.com/laravel/framework/pull/54734#issuecomment-2672501873 and https://github.com/laravel/framework/pull/54443#issuecomment-2644726839 You can then do ```php User::query([PDO::FETCH_UNIQUE])->select(['id','users.*'])->get(); ``` without an additional call to `fetchUsing()` As bert-w has pointed out, this...
## The problem PHP is weird about traits. If a class uses a trait, then it cannot re-declare properties from the trait with differing values. (Though if another class uses...
Hi, I'm working on a PR for Laravel Actions with the goal of enabling Precognition for Actions, as I'd like to start using Precognition within Actions. While I've made this...
Fix issue #50330 a race condition checking if lock already exists. It's possible for a race condition to occur if we acquire the lock just to check if it's free....