1
0
forked from poc/pds

Updated validation logics for resource, importer, exporter, create files and Added columns in model file

This commit is contained in:
dhanabalan
2026-05-02 18:57:13 +05:30
parent fba8101da3
commit 7e1fea11c6
5 changed files with 269 additions and 90 deletions

View File

@@ -8,6 +8,7 @@ use Illuminate\Database\Eloquent\SoftDeletes;
class ProductionOrder extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'item_id',
@@ -17,6 +18,10 @@ class ProductionOrder extends Model
'production_order',
'from_serial_number',
'to_serial_number',
'created_at',
'created_by',
'updated_at',
'updated_by',
];
public function plant()