laravel pass data to view 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();
Example 3: laravel pass variables to view
return view('home')->with('userName',$userName);
Example 4: pass parameter to view laravel
Route::get('/', function () {
return view('greeting', ['name' => 'James']);
});