d2d.emegrendeles.hu/app/Models/OrderArchivesItem.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

22 lines
426 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class OrderArchivesItem extends BaseAuditable
{
/**
* The items that belong to the OrderArchive.
*/
public function orderArchive(): BelongsTo
{
return $this->belongsTo(OrderArchive::class);
}
public function ProductGroup(): BelongsTo
{
return $this->belongsTo(ProductGroup::class);
}
}