added fillable fields in Invoice

This commit is contained in:
Edmond Teh
2020-09-03 12:31:56 +08:00
parent 9b8e77a885
commit d45ecf278b
+1 -1
View File
@@ -6,7 +6,7 @@ use Illuminate\Database\Eloquent\Model;
class Invoice extends Model
{
protected $fillable = ['invoice_url','amount','booking_id'];
protected $fillable = ['invoice_url','amount','booking_id', 'buyer_company', 'address', 'contact_no', 'po_number'];
public function booking(){
return $this->belongsTo('App\Booking');