it is possible to make badges with link for each badge

I want to ask it is possible to make badges in table that have multiple url link for each badge?
If it is possible how to do that?

Thank you
Solution
Tables\Columns\TextColumn::make('inventory_location_list.inventory_location.room_name')
          ->searchable()   
          ->badge()
          ->limitList(3)
          ->expandableLimitedList()
          ->url(function ($record): string {
              // dd($state);
              return InventoryLocationResource::getUrl('edit', ['record' => $record]);
          })
          ->label('At Room'),
Was this page helpful?