39 lines
772 B
PHP
39 lines
772 B
PHP
<?php
|
|
|
|
namespace Modules\StockTransfer\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Product\Entities\Product;
|
|
use App\Models\ProductBatch;
|
|
|
|
class StockTransferItem extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'stock_transfer_id',
|
|
'product_id',
|
|
'product_batch_id',
|
|
'quantity'
|
|
];
|
|
|
|
protected $casts = [
|
|
'quantity' => 'integer'
|
|
];
|
|
|
|
public function stockTransfer()
|
|
{
|
|
return $this->belongsTo(StockTransfer::class);
|
|
}
|
|
|
|
public function product()
|
|
{
|
|
return $this->belongsTo(Product::class);
|
|
}
|
|
|
|
public function productBatch()
|
|
{
|
|
return $this->belongsTo(ProductBatch::class);
|
|
}
|
|
}
|