You are currently viewing the documentation for Filament 2.x, which is a previous version of Filament.Looking for the current stable version? Visit the 5.x documentation.
Tags columns render a list of tags from an array:
Copy
use Filament\Tables\Columns\TagsColumn;TagsColumn::make('tags')
Be sure to add an arraycast to the model property:
Copy
use Illuminate\Database\Eloquent\Model;class Post extends Model{ protected $casts = [ 'tags' => 'array', ]; // ...}