| @@ -1,8 +1,9 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | namespace FluentCart\App\Models; |
| 4 | 4 | use FluentCart\App\Models\Concerns\CanSearch; |
| 5 | +use FluentCart\App\Models\Concerns\CanUpdateBatch; | |
| 5 | 6 | use FluentCart\Framework\Support\Arr; |
| 6 | 7 | |
| 7 | 8 | /** |
| 8 | 9 | * Attributes Terms Model - DB Model for Attributes Terms eg for Size: Small, Medium, Large |
| @@ -14,9 +15,9 @@ | ||
| 14 | 15 | * @version 1.0.0 |
| 15 | 16 | */ |
| 16 | 17 | class AttributeTerm extends Model |
| 17 | 18 | { |
| 18 | - use CanSearch; | |
| 19 | + use CanSearch, CanUpdateBatch; | |
| 19 | 20 | |
| 20 | 21 | protected $table = 'fct_atts_terms'; |
| 21 | 22 | |
| 22 | 23 | protected $fillable = [ |