vat_wms/app/Models/StockEntrySection.php
2025-06-02 07:36:24 +02:00

16 lines
396 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\Pivot;
use OwenIt\Auditing\Auditable;
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
class StockEntrySection extends Pivot implements AuditableContract
{
use Auditable;
protected $table = 'stock_entries2section';
public $incrementing = false; // composite PK
protected $primaryKey = null;
}