Merge pull request 'Added stock data master model file' (#450) from ranjith-dev into master
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

Reviewed-on: #450
This commit was merged in pull request #450.
This commit is contained in:
2026-03-10 03:32:51 +00:00

View File

@@ -0,0 +1,53 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class StockDataMaster extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'sticker_master_id',
'location',
'bin',
'serial_number',
'batch',
'quantity',
'doc_no',
'type',
'motor_scanned_status',
'pump_scanned_status',
'capacitor_scanned_status',
'scanned_status_set',
'panel_box_item_code',
'panel_box_supplier',
'panel_box_sno',
'scanned_status',
'scanned_quantity',
'created_by',
'updated_by',
'created_at',
'updated_at',
];
public function plant(): BelongsTo
{
return $this->belongsTo(Plant::class);
}
public function stickerMaster(): BelongsTo
{
return $this->belongsTo(StickerMaster::class);
}
public function stickerMasterRelation()
{
return $this->belongsTo(StickerMaster::class, 'sticker_master_id');
}
}