/
proc
/
self
/
cwd
/
scm
/
app
/
Upload File
HOME
<?php namespace App; use Illuminate\Database\Eloquent\Model; class PurchaseOrder extends Model { protected $table = 'purchase_orders'; protected $fillable = [ 'po_number', 'status', 'remark', // Add other column names here ]; }