1
0
forked from poc/pds

Add ProcessOrder model with fillable attributes and relationships

This commit is contained in:
dhanabalan
2025-09-10 15:16:51 +05:30
parent 365d5b19ab
commit 367d103c75

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 ProcessOrder extends Model
{
use SoftDeletes;
protected $fillable = [
"plant_id",
"item_id",
"process_order",
"created_at",
"created_by",
"updated_by",
"updated_at"
];
public function plant(): BelongsTo
{
return $this->belongsTo(Plant::class);
}
public function item(): BelongsTo
{
return $this->belongsTo(Item::class);
}
}