Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 12s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 11s
Laravel Pint / pint (pull_request) Successful in 4m49s
Laravel Larastan / larastan (pull_request) Failing after 5m52s
46 lines
915 B
PHP
46 lines
915 B
PHP
<?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',
|
|
'line_id',
|
|
'item_id',
|
|
'process_order',
|
|
'coil_number',
|
|
'order_quantity',
|
|
'received_quantity',
|
|
'sfg_number',
|
|
'machine_name',
|
|
'scrap_quantity',
|
|
'rework_status',
|
|
'created_at',
|
|
'created_by',
|
|
'updated_by',
|
|
'updated_at',
|
|
];
|
|
|
|
public function plant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Plant::class);
|
|
}
|
|
|
|
public function line(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Line::class);
|
|
}
|
|
|
|
public function item(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Item::class, 'item_id');
|
|
}
|
|
}
|