26 lines
532 B
PHP
26 lines
532 B
PHP
<?php
|
|
|
|
namespace App\Models\Shop;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProductPrice extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function Product()
|
|
{
|
|
return $this->belongsTo('App\Models\Shop\Product');
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function ProductAttribute()
|
|
{
|
|
return $this->belongsTo('App\Models\Shop\ProductAttribute');
|
|
}
|
|
} |