если я прав, вам нужно разобрать json в поле зрения.
public function ShowUserList()
{
return response()->json(User::all(), 200);
}
public function ShowUser()
{
$users = json_decode( $this->ShowUserList(), true );
return view('show_users', compact('users'));
}
поэтому, основываясь на этом, вы можете сделать следующее:
// now this is just an json object not array..
{{ $user['id'] }}
{{ $user['name'] }}
надеюсь, что я вам помог..