ranjith-dev #1001

Merged
jothi merged 5 commits from ranjith-dev into master 2026-09-10 11:39:05 +00:00
Showing only changes of commit 93babbfe0e - Show all commits

View File

@@ -0,0 +1,35 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class CoilPacking extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'item_id',
'coil_packing_number',
'process_order',
'coil_packing_status',
'created_at',
'updated_at',
'scanned_at',
'created_by',
'updated_by',
'scanned_by',
];
public function plant()
{
return $this->belongsTo(Plant::class);
}
public function item()
{
return $this->belongsTo(Item::class);
}
}