Add producers

This commit is contained in:
Ludovic CANDELLIER
2022-04-25 11:07:02 +02:00
parent 570374bab7
commit 5747b93952
19 changed files with 339 additions and 37 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Spatie\MediaLibrary\HasMedia;
use Rinvex\Tags\Traits\Taggable;
use Kirschbaum\PowerJoins\PowerJoins;
use Wildside\Userstamps\Userstamps;
use App\Traits\Model\Imageable;
class Producer extends Model implements HasMedia
{
use Imageable, PowerJoins, SoftDeletes, Taggable, UserStamps;
protected $guarded = ['id'];
protected $table = 'shop_producers';
public function Merchandises()
{
return $this->morphMany(Article::class, 'product');
}
public function tags()
{
return $this->morphToMany(Tag::class, 'taggable');
}
}