view with parameters laravel and access that data into blade code example
Example 1: laravel pass view with data
return view("blog", ["posts"=>$posts]);
Or:
return view("blog", compact("posts"));
Example 2: laravel load view in variable
$html = view('users.edit', compact('user'))->render();