/
home
/
sjslayjy
/
public_html
/
tabson
/
app
/
Upload File
HOME
<?php namespace App; use Illuminate\Database\Eloquent\Model; class ProductionOrder extends Model { protected $table = 'production_orders'; protected $fillable = [ 'bom_number', 'status', 'remark', // Add other column names here ]; }