I tell you I am trying to pass the data of an array to a view but I can not specify this is the controller code
$lists = array(["name" => "Cerchas", "status" => "1"],
["name" => "Ventanas", "status" => "2"]
);
return view('batch.index', compact($lists));
Go the view code
@foreach ($lists as $list)
{{$list->status}}
@endforeach