b2in/app/Models/Tag.php
2026-02-20 17:57:50 +01:00

22 lines
384 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
class Tag extends Model
{
protected $fillable = [
'name',
'slug',
];
/**
* Produkte mit diesem Tag.
*/
public function products(): BelongsToMany
{
return $this->belongsToMany(Product::class);
}
}