16 lines
396 B
PHP
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;
|
|
}
|