| @@ -3,8 +3,9 @@ | ||
| 3 | 3 | declare(strict_types=1); |
| 4 | 4 | |
| 5 | 5 | namespace Give\Framework\ListTable; |
| 6 | 6 | |
| 7 | +use Give\Framework\ListTable\Concerns\ListTableData; | |
| 7 | 8 | use Give\Framework\Support\Contracts\Arrayable; |
| 8 | 9 | |
| 9 | 10 | /** |
| 10 | 11 | * @since 2.24.0 |
| @@ -12,8 +13,11 @@ | ||
| 12 | 13 | * @template M of Give\Framework\Models\Model |
| 13 | 14 | */ |
| 14 | 15 | abstract class ModelColumn implements Arrayable |
| 15 | 16 | { |
| 17 | + | |
| 18 | + use ListTableData; | |
| 19 | + | |
| 16 | 20 | /** |
| 17 | 21 | * @var string|array Define the meta key to be used when sorting the query by this column |
| 18 | 22 | */ |
| 19 | 23 | protected $sortColumn; |