return custom table widget in action

can we return a table widget here instead of form
CreateAction::make()
    ->model(Post::class)
    ->form([
        TextInput::make('title')
            ->required()
            ->maxLength(255),
        // ...
    ])
Was this page helpful?