I have a storeQuantities()
method that stores the quantities of tickets selected by the user in a conference details page.
In this method "dd($selectedRtypes)
" shows the content below. The questions is empty because there are no questions associated with this conference.
array:1 [▼
"geral" => array:5 [▼
"quantity" => "2"
"price" => 0
"total" => 0
"questions" => Collection {#255 ▼
#items: []
}
"id" => 1
]
]
In the registration.blade.php it appears this error:
Undefined index: questions
With:
@if(is_null($selectedRtypes['questions']))
....
Do you know why?