2025-11-21 10:49:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Blax\Shop\Models;
|
|
|
|
|
|
2025-11-23 14:07:12 +00:00
|
|
|
use Blax\Workkit\Traits\HasMeta;
|
2025-11-21 10:49:41 +00:00
|
|
|
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
|
|
|
|
|
|
class CartItem extends Model
|
|
|
|
|
{
|
2025-11-23 14:07:12 +00:00
|
|
|
use HasUuids, HasMeta;
|
2025-11-21 10:49:41 +00:00
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'cart_id',
|
2025-11-23 14:07:12 +00:00
|
|
|
'purchasable_id',
|
|
|
|
|
'purchasable_type',
|
2025-11-21 10:49:41 +00:00
|
|
|
'quantity',
|
|
|
|
|
'price',
|
|
|
|
|
'regular_price',
|
|
|
|
|
'subtotal',
|
2025-11-23 14:07:12 +00:00
|
|
|
'parameters',
|
2025-11-28 09:24:07 +00:00
|
|
|
'purchase_id',
|
2025-11-21 10:49:41 +00:00
|
|
|
'meta',
|
2025-12-15 10:32:31 +00:00
|
|
|
'from',
|
|
|
|
|
'until',
|
2025-11-21 10:49:41 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
|
'quantity' => 'integer',
|
|
|
|
|
'price' => 'decimal:2',
|
|
|
|
|
'regular_price' => 'decimal:2',
|
|
|
|
|
'subtotal' => 'decimal:2',
|
2025-11-23 14:07:12 +00:00
|
|
|
'parameters' => 'array',
|
2025-11-21 10:49:41 +00:00
|
|
|
'meta' => 'array',
|
2025-12-15 10:32:31 +00:00
|
|
|
'from' => 'datetime',
|
|
|
|
|
'until' => 'datetime',
|
2025-11-21 10:49:41 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
public function __construct(array $attributes = [])
|
|
|
|
|
{
|
|
|
|
|
parent::__construct($attributes);
|
|
|
|
|
$this->table = config('shop.tables.cart_items', 'cart_items');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected static function boot()
|
|
|
|
|
{
|
|
|
|
|
parent::boot();
|
|
|
|
|
|
|
|
|
|
// Auto-calculate subtotal before saving
|
|
|
|
|
static::creating(function ($cartItem) {
|
|
|
|
|
if (!isset($cartItem->subtotal)) {
|
|
|
|
|
$cartItem->subtotal = $cartItem->quantity * $cartItem->price;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
static::updating(function ($cartItem) {
|
|
|
|
|
if ($cartItem->isDirty(['quantity', 'price'])) {
|
|
|
|
|
$cartItem->subtotal = $cartItem->quantity * $cartItem->price;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function cart(): BelongsTo
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(config('shop.models.cart'), 'cart_id');
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-23 14:07:12 +00:00
|
|
|
public function purchasable()
|
2025-11-21 10:49:41 +00:00
|
|
|
{
|
2025-11-23 14:07:12 +00:00
|
|
|
return $this->morphTo('purchasable');
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-28 09:24:07 +00:00
|
|
|
public function purchase()
|
|
|
|
|
{
|
|
|
|
|
return $this->hasOne(
|
|
|
|
|
config('shop.models.product_purchase', ProductPurchase::class),
|
|
|
|
|
'id',
|
|
|
|
|
'purchase_id'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-23 14:07:12 +00:00
|
|
|
public function product(): BelongsTo|null
|
|
|
|
|
{
|
|
|
|
|
if ($this->purchasable_type === config('shop.models.product', Product::class)) {
|
|
|
|
|
return $this->belongsTo(config('shop.models.product'), 'purchasable_id');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
2025-11-21 10:49:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getSubtotal(): float
|
|
|
|
|
{
|
|
|
|
|
return $this->quantity * $this->price;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function scopeForCart($query, $cartId)
|
|
|
|
|
{
|
|
|
|
|
return $query->where('cart_id', $cartId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function scopeForProduct($query, $productId)
|
|
|
|
|
{
|
|
|
|
|
return $query->where('product_id', $productId);
|
|
|
|
|
}
|
|
|
|
|
}
|