skip to Main Content

Laravel function ignores return

in my laravel application I have a function that is ignoring a return, and it returns the RedirectResponse. Hear my code. This is the call: public function updateReservationAPI(Booking $booking) { try { $idReturned = $this->getReservationByDate($booking->arrival); } catch (Exception $e) {…

VIEW QUESTION
Back To Top
Search