18 lines
342 B
PHP
18 lines
342 B
PHP
<?php
|
|
|
|
namespace App\Models\Shop;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
|
|
|
class ArticleAttribute extends Pivot
|
|
{
|
|
public function Article()
|
|
{
|
|
return $this->belongsTo('App\Models\Shop\Article');
|
|
}
|
|
|
|
public function Attribute()
|
|
{
|
|
return $this->belongsTo('App\Models\Shop\ArticleAttribute');
|
|
}
|
|
} |