framework icon indicating copy to clipboard operation
framework copied to clipboard

The Laravel Framework.

Results 465 framework issues
Sort by recently updated
recently updated
newest added

- Laravel Version: 9.24.0 - PHP Version: 8.0.18 - Database Driver & Version: MySQL 8.0.29 - PDO statement fetch mode: `FETCH_ASSOC` ### Description: New database inspection commands doesn't work in...

I just was reading the container tests and found some lines of code useless and do't effect on the tests and removed them

- Laravel Version: 9.x - PHP Version: 7.x - 8.x Validation rule alpha, use a wrong unicode char property that allow non alpha character to pass the validation. The used...

Fix inconsistence for dealing with nested array on Eloquent. Currently you can set nested array values, but not access them: ```php $model = new Model; $model->{'a->b'} = 'something'; // this...

This adds the Str::join() helper that joins together a list of strings using different glue strings depending on how many items there are and what the current item's index is....

Before this PR, we were manually map Laravel column types to its Doctrine equivalent and many types were missing, this PR uses each database platform own map instead. So we...

I really enjoy the new artisan `model:show` command, I find this very useful! I have worked on a similar project [modeltyper](https://github.com/fumeapp/modeltyper) where we had similar functionality, but to produce an...

This is a follow up of https://github.com/laravel/framework/pull/40569, splitting the original pull request up. This pull request is about refining the existing redis test suite making it easy to test future...

The `migrate:status` command doesn't sort the migrations by batch when outputting to console. I've noticed this issue by running an old migration I forgot to migrate after having ran other...

**Note: this PR is one of four parallel pull requests to add first class support for Ably to Laravel. Please find the other PRs here:** - laravel/docs#8120 - laravel/laravel#5969 -...