79 lines
1.8 KiB
PHP
Executable File
79 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Checkout\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Webkul\Checkout\Database\Factories\CartAddressFactory;
|
|
use Webkul\Checkout\Contracts\CartAddress as CartAddressContract;
|
|
use Webkul\Core\Models\Address;
|
|
|
|
/**
|
|
* Class CartAddress
|
|
*
|
|
* @package Webkul\Checkout\Models
|
|
*
|
|
* @property integer $cart_id
|
|
* @property Cart $cart
|
|
*
|
|
*/
|
|
class CartAddress extends Address implements CartAddressContract
|
|
{
|
|
use HasFactory;
|
|
|
|
public const ADDRESS_TYPE_SHIPPING = 'cart_shipping';
|
|
|
|
public const ADDRESS_TYPE_BILLING = 'cart_billing';
|
|
|
|
/**
|
|
* @var array default values
|
|
*/
|
|
protected $attributes = [
|
|
'address_type' => self::ADDRESS_TYPE_BILLING,
|
|
];
|
|
|
|
/**
|
|
* The "booted" method of the model.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected static function boot(): void
|
|
{
|
|
static::addGlobalScope('address_type', static function (Builder $builder) {
|
|
$builder->whereIn('address_type', [
|
|
self::ADDRESS_TYPE_BILLING,
|
|
self::ADDRESS_TYPE_SHIPPING,
|
|
]);
|
|
});
|
|
|
|
parent::boot();
|
|
}
|
|
|
|
/**
|
|
* Get the shipping rates for the cart address.
|
|
*/
|
|
public function shipping_rates(): HasMany
|
|
{
|
|
return $this->hasMany(CartShippingRateProxy::modelClass());
|
|
}
|
|
|
|
/**
|
|
* Get the cart record associated with the address.
|
|
*/
|
|
public function cart(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Cart::class);
|
|
}
|
|
|
|
/**
|
|
* Create a new factory instance for the model
|
|
*
|
|
* @return CartAddressFactory
|
|
*/
|
|
protected static function newFactory(): CartAddressFactory
|
|
{
|
|
return CartAddressFactory::new();
|
|
}
|
|
} |