adjustment fillable in invoice model

This commit is contained in:
Edmond Teh
2020-09-25 15:55:27 +08:00
parent 837d37b395
commit 30b3f7554e
+1 -1
View File
@@ -6,7 +6,7 @@ use Illuminate\Database\Eloquent\Model;
class Invoice extends Model
{
protected $fillable = ['invoice_url','amount','booking_id', 'buyer_company', 'address', 'contact_no', 'po_number'];
protected $fillable = ['invoice_url','amount','booking_id', 'buyer_company', 'address', 'contact_no', 'po_number', 'adjustment'];
public function booking(){
return $this->belongsTo('App\Booking');