view with data laravel 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: laravel return view in web.php

Route::get("/page", function(){
   return View::make("dir.page");
});

Example 5: pass parameter to view laravel

Route::get('/', function () {
    return view('greeting', ['name' => 'James']);
});

Tags:

Php Example