refactor: Remove sortable from the 'Peran' column in UserResource.

This commit is contained in:
Yoga Pangestu 2026-03-13 09:22:14 +07:00
parent 29595e86bb
commit 4e8ac2750f

View File

@ -140,7 +140,6 @@ public static function table(Table $table): Table
TextColumn::make('roles.name')
->label('Peran')
->searchable()
->sortable()
->badge()
->getStateUsing(fn (User $record): array => $record->roles->pluck('name', 'id')->toArray()),