mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 20:44:25 +00:00
9ed67e74e2
- Supplier (AP) - PO - DO - INV - Customer (AR) - PO - DO - INV
18 lines
308 B
PHP
18 lines
308 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
|
|
|
|
class TransactionDetail extends AbstractModel
|
|
{
|
|
protected $table = 'transaction_detail';
|
|
|
|
public function transaction(): HasOne
|
|
{
|
|
return $this->hasOne(Transaction::class, 'transaction_id', 'id');
|
|
}
|
|
|
|
}
|