Empty screen #15175
Unanswered
rajanvishwa10
asked this question in
Help
Empty screen
#15175
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Table builder
Package Version
v3.2.0
How can we help you?
http://127.0.0.1:8000/admin/leadershipTeams?tableSearch=test
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('member_name')->searchable(),
Tables\Columns\TextColumn::make('designation'),
Tables\Columns\ImageColumn::make('image')
])
->filters([
//
])
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make()
->requiresConfirmation(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
Tables\Actions\DeleteBulkAction::make(),
]),
]);
}
Beta Was this translation helpful? Give feedback.
All reactions