public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('name')
->searchable()
->sortable()
])
->paginated(false)
->filters([
//
])
->recordAction('edit')
->recordUrl(null)
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\ViewAction::make(),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('name')
->searchable()
->sortable()
])
->paginated(false)
->filters([
//
])
->recordAction('edit')
->recordUrl(null)
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\ViewAction::make(),
]);
}