return view as variable laravel code example
Example 1: laravel load view in variable
$html = view('users.edit', compact('user'))->render();
Example 2: return view with variable laravel
return View::make('blog')->with('posts', $posts);
$html = view('users.edit', compact('user'))->render();
return View::make('blog')->with('posts', $posts);