Skip to content

Commit

Permalink
Fix - SoftDeletes missing in ProductVariant (#1886)
Browse files Browse the repository at this point in the history
  • Loading branch information
lguichard authored Aug 6, 2024
1 parent e63fb42 commit 2fc9fb8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/core/src/Models/ProductVariant.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Collection;
use Lunar\Base\BaseModel;
use Lunar\Base\Casts\AsAttributeData;
Expand Down Expand Up @@ -59,6 +60,7 @@ class ProductVariant extends BaseModel implements Purchasable
use HasPrices;
use HasTranslations;
use LogsActivity;
use SoftDeletes;

/**
* Define the guarded attributes.
Expand Down

0 comments on commit 2fc9fb8

Please sign in to comment.