Initial commit

This commit is contained in:
root
2026-05-09 17:28:23 +02:00
commit 9d73f82529
5575 changed files with 281989 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class WebsiteShopArticleFeature extends Model
{
#[\Override]
protected $guarded = ['id', 'created_at', 'updated_at', 'article_id', 'feature'];
public function article(): BelongsTo
{
return $this->belongsTo(WebsiteShopArticle::class, 'article_id', 'id');
}
}