File "BadgeColumn.php"
Full Path: /home/tecassol/public_html/tecas-solar.ma/vendor/filament/tables/src/Columns/BadgeColumn.php
File size: 228 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Filament\Tables\Columns;
/**
* @deprecated Use `TextColumn` with the `badge()` method instead.
*/
class BadgeColumn extends TextColumn
{
public function isBadge(): bool
{
return true;
}
}