I want to passing data from controller to view
$participantView = view('section.participant', ['data' => $result['data']])->render();
the $result['data'] is array data(not empty)
I do foreach
in view, and got:
undefined variable: data
I also do with compact and 'with', but also getting undefined variable
What is wrong in my code?