Files
pds/app/Models/Item.php
dhanabalan 96a8311317
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 10s
Added weight validation table has many relationship
2026-01-14 11:46:54 +05:30

62 lines
1.3 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class Item extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'category',
'code',
'description',
'hourly_quantity',
'uom',
];
public function plant(): BelongsTo
{
return $this->belongsTo(Plant::class);
}
public function stickerMasters()
{
return $this->hasMany(StickerMaster::class, 'item_id', 'id');
}
public function productionQuantities()
{
return $this->hasMany(ProductionQuantity::class);
}
public function motorTestingMasters()
{
return $this->hasMany(MotorTestingMaster::class);
}
public function testingPanelReadings()
{
return $this->hasMany(TestingPanelReading::class);
}
public function processOrders()
{
return $this->hasMany(ProcessOrder::class);
}
public function productCharacteristicsMasters()
{
return $this->hasMany(ProductCharacteristicsMaster::class);
}
public function weightValidations()
{
return $this->hasMany(WeightValidation::class);
}
}