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