list pending po pending approval

This commit is contained in:
omair saleh
2020-09-29 12:07:21 +08:00
parent bcc2c25805
commit a389fe2fa7
+1 -1
View File
@@ -9,6 +9,6 @@ class InvoiceStatuses extends Model
protected $fillable = ['status','comment', 'invoice_id']; protected $fillable = ['status','comment', 'invoice_id'];
public function invoice() { public function invoice() {
return $this->belongsTo('App/Invoice'); return $this->belongsTo(Invoice::class);
} }
} }