17 lines
318 B
PHP
17 lines
318 B
PHP
<?php
|
|
|
|
namespace Webkul\Cart\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\Cart\Models\CartAddress;
|
|
|
|
class CartShippingRate extends Model
|
|
{
|
|
/**
|
|
* Get the post that owns the comment.
|
|
*/
|
|
public function shipping_address()
|
|
{
|
|
return $this->belongsTo(CartAddress::class);
|
|
}
|
|
} |