From 30b3f7554ea7b0873c279c431c18d82d298e9cea Mon Sep 17 00:00:00 2001 From: Edmond Teh Date: Fri, 25 Sep 2020 15:55:27 +0800 Subject: [PATCH] adjustment fillable in invoice model --- app/Invoice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Invoice.php b/app/Invoice.php index 647b3bff..9e3bffa8 100644 --- a/app/Invoice.php +++ b/app/Invoice.php @@ -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');