Files
pds/app/Models/PanelBoxValidation.php
dhanabalan 692a114f4b
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 15s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 16s
Laravel Pint / pint (pull_request) Successful in 2m41s
Laravel Larastan / larastan (pull_request) Failing after 5m3s
Added three column in panel box model file
2026-07-24 11:57:45 +05:30

51 lines
1.1 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class PanelBoxValidation extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'line_id',
'sticker_master_id',
'production_order',
'serial_number',
'serial_number_panel',
'pack_slip_panel',
'name_plate_panel',
'tube_sticker_panel',
'warranty_card_panel',
'part_validation1',
'part_validation2',
'part_validation3',
'part_validation4',
'part_validation5',
'panel_box_supplier',
'panel_box_serial_number',
'batch_number',
'panel_box_code',
'created_by',
'updated_by'
];
public function plant(): BelongsTo
{
return $this->belongsTo(Plant::class);
}
public function line(): BelongsTo
{
return $this->belongsTo(Line::class);
}
public function stickerMaster(): BelongsTo
{
return $this->belongsTo(StickerMaster::class);
}
}