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

This PR is a followup of #43546. As discussed, the following new functions should be added to the `Vite` class: 1. New func `withEntryPoints` that accepts entry points and is...

Writing a console command, there is a function `$this->choice()`. The `$default` property should be the default key as described in the [Laravel documentation](https://laravel.com/docs/9.x/artisan#multiple-choice-questions), which is `int` and not `string`.

Fixes https://github.com/laravel/framework/issues/43621 Also replaces https://github.com/laravel/framework/pull/43631 since I had to touch the same lines.

Adds SQL-like operator to the Laravel collections. Usage: ```php $collection->where('name', 'like', 'Lara%')->all(); ``` Thanks to this question/answer: https://stackoverflow.com/questions/4912294/php-like-thing-similar-to-mysql-like-for-if-statement

- Laravel Version: 9.24.0 - PHP Version: 8.1.9 - Database Driver & Version: Mysql 5.7.38 ### Description: php artisan db:show returns "Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support...

It's not always possible to resolve the JsonResource from the container. This is because the JsonResource expects a argument in the constructor. This argument can be anything (mixed). I often...

- Laravel Version: 9.24.0 - PHP Version: 8.1 ### Description: The command works fine, but i get multiple errors in my log: local.ERROR: Undefined array key "engine" {"exception":"[object] (ErrorException(code: 0):...

This pull request fixes a small regression introduced on https://github.com/laravel/framework/pull/43367, where installing the necessary composer dependencies for "db:show", "db:table", and "model:show" is not causing the command to terminate, consequentially displays...

- Laravel Version: 9.19 - PHP Version: 8.0.2 ### Description: Given the following `.env`... ```plaintext APP_NAME=Laravel APP_KEY= ... ``` ... `artisan key:generate` will yield... ```plaintext APP_NAME=Laravel APP_KEY=base64:133eb1bde70e4ba388bdf74e4ac95cbd= ``` This includes...

- Laravel Version: 9.23.0 - PHP Version: 8.0.15 - Database Driver & Version: none ### Description: The locks returned by [FileStore](https://github.com/laravel/framework/blob/053840f579cf01d353d81333802afced79b1c0af/src/Illuminate/Cache/FileStore.php) are instances of the class [CacheLock](https://github.com/laravel/framework/blob/053840f579cf01d353d81333802afced79b1c0af/src/Illuminate/Cache/CacheLock.php). CacheLock's implementation of...