framework
framework copied to clipboard
The Laravel Framework.
- Laravel Version: 9.46.0 - PHP Version: 8.1.1 - Database Driver & Version: MySQL 8.0.23 ### Description: Run after transaction ShouldBeUniqueUntilProcessing job blocks jobs creation on DB transaction failed ###...
solves #45424 The solution seems a bit hacky, but the idea, however, is simple: - Without changing the regex pattern, we perform our first search to get matches. - Then...
It is kind of a bug fix, MySQL doesn't have index name for primary key, check the syntax on [5.7](https://dev.mysql.com/doc/refman/5.7/en/alter-table.html) and [8.0](https://dev.mysql.com/doc/refman/8.0/en/alter-table.html) ```sql ALTER TABLE tbl_name [alter_option [, alter_option] ...]...
-> We can already chain an index method on the column definition to [add an index](https://laravel.com/docs/9.x/migrations#creating-indexes): ```php $table->string('name')->unique(); ``` -> We could also [modify a column](https://laravel.com/docs/9.x/migrations#updating-column-attributes) to drop its attribute,...
- Laravel Version: illuminate/database v9.45.1 - PHP Version: 8.2.0 - Database Driver & Version: SQLite PDO ### Description: I'm calling `increment` on a field that has a custom cast. The...
- Laravel Version: 9.41.0 - PHP Version: 8.0.18 - Database Driver & Version: ODBC Driver 17 for SQL Server ### Description: Code which worked prior to updrading to Laravel 9...
- Laravel Version: 9.43.0 - PHP Version: 8.1 - Database Driver & Version: N/a ### Description: We have an AWS SES pattern where we have a verified identity in a...
- Laravel Version: 9.41.0 - PHP Version: 8.1.13 - Database Driver & Version: MySQL 8.0 (sail) ### Description: All of my models extend from a `BaseModel` class, which sets `$incrementing...
- Laravel Version: 9.1 - PHP Version: 8.1 - Database Driver & Version: mysql ### Description: If i query a Model like so: ``` Contact::withoutGlobalScope( AccountScope::class ) ->without([ 'company', 'timetracks',...
Allows statically disable `vendor:publish` of updating migrations date.