ranjith-dev #341

Merged
jothi merged 2 commits from ranjith-dev into master 2026-02-17 03:27:39 +00:00
Showing only changes of commit db15039d81 - Show all commits

View File

@@ -8,17 +8,17 @@ use Illuminate\Database\Eloquent\SoftDeletes;
class GrMaster extends Model class GrMaster extends Model
{ {
use SoftDeletes; use SoftDeletes;
protected $fillable = [ protected $fillable = [
"plant_id", 'plant_id',
"item_id", 'item_id',
"serial_number", 'serial_number',
"gr_number", 'gr_number',
"created_at", 'created_at',
"created_by", 'created_by',
"updated_by", 'updated_at',
"updated_at" 'updated_by',
]; ];
public function plant(): BelongsTo public function plant(): BelongsTo
@@ -30,5 +30,4 @@ class GrMaster extends Model
{ {
return $this->belongsTo(Item::class); return $this->belongsTo(Item::class);
} }
} }