laravel-idea / plugin

Laravel Idea plugin for PhpStorm
https://laravel-idea.com/
161 stars 7 forks source link

[Bug]: Creating a Filament Resource doesn't add row and bulk actions #898

Closed abishekrsrikaanth closed 5 months ago

abishekrsrikaanth commented 6 months ago

Bug description

When creating a filament resource, it doesn't include row actions and bulk actions by default on the table method.

Basically the following code for the table defition.

->filters([
            //
        ])->actions([
            Tables\Actions\EditAction::make(),
        ])->bulkActions([
            Tables\Actions\BulkActionGroup::make([
                Tables\Actions\DeleteBulkAction::make(),
            ]),
        ]);

Plugin version

8.0.2.233

Operating system

MacOS

Steps to reproduce

Create a Filament Resource using Laravel Idea Plugin on PHP Storm

Relevant log output

No response

adelf commented 5 months ago

They are added in the 8.0.3 version. Thanks.