Hafez Divandari

Results 17 issues of Hafez Divandari

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...

The chart's width doesn't go below 300px when its width option is set to 100% on chrome: https://jsfiddle.net/hafez/9w5up1b4/ ![image](https://user-images.githubusercontent.com/56585913/89116254-57f89500-d481-11ea-86a3-eb70856a7bb2.png)

According to [RFC 6749](https://www.rfc-editor.org/rfc/rfc6749#section-4.2.2.1) on error response of the implicit grant, the authorization server should add parameters to the fragment component of the redirection URI. It's already done for access...

According to #1571, This PP also binds `StatefulGaurd` to the default auth guard (same as before using `auth` middleware on the route). The same approach is already used on Laravel...

* laravel/passport#1567 * laravel/passport#1569 * laravel/passport#1577

I have `User` and `UserTeam` models and this self-related relation on `User` model: ```php class User extends Model { use \Staudenmeir\EloquentHasManyDeep\HasRelationships; public function teammates() { return $this->hasManyDeep(User::class, ['App\Models\TeamUser as user_team',...

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,...

## Description Doctrine DBAL has been removed from Laravel 11.x: * laravel/framework#48864 * [Laravel 11.x Upgrade Guide](https://laravel.com/docs/master/upgrade#doctrine-dbal-removal) This PR removes `doctrine/dbal` from filament and uses following Laravel's native schema methods,...

enhancement