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