Closed gulsheeraz closed 1 year ago
$this->payload = [ 'booking' => [ 'id' => $this->booking->id, 'booking_date' => $this->booking->booking_date, ], 'customer' => $customer, ]; Above payload is not supported
$this->payload = [ 'booking' => [ 'id' => $this->booking->id, 'booking_date' => $this->booking->booking_date, ], 'customer' => $customer, ];
PRs with tests accepted
I have successfully passed the data after converting it into JSON format json_encode.
json_encode
Cool, I suppose that's a solution
$this->payload = [ 'booking' => [ 'id' => $this->booking->id, 'booking_date' => $this->booking->booking_date, ], 'customer' => $customer, ];
Above payload is not supported