h-e-l-l-o everyone
I received this response
now I want to use foreach in my View file to show all of the users
this is my Controller Functions:
public function ShowUserList()
{
return response()->json(User::all(), 200);
}
public function ShowUser()
{
$users = $this->ShowUserList();
return view('show_users', compact('users'));
}
and when I render it in view I received the response that I uploaded on top
