ranjith-dev #642

Merged
jothi merged 6 commits from ranjith-dev into master 2026-05-25 09:34:47 +00:00
Showing only changes of commit ee898b935b - Show all commits

View File

@@ -0,0 +1,33 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class AsrsItemValidation extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'item_code',
'item_description',
'uom',
'mhe',
'bin_quantity',
'asrs',
'asrs_category',
'status',
'created_at',
'updated_at',
'created_by',
'updated_by',
];
public function plant(): BelongsTo
{
return $this->belongsTo(Plant::class);
}
}