Answers for "laravel load view in variable"

PHP
4

laravel load view in variable

$html = view('users.edit', compact('user'))->render();
Posted by: Guest on October-07-2020
1

return view with variable laravel

return View::make('blog')->with('posts', $posts);
Posted by: Guest on February-09-2021
1

pass parameter to view laravel

Route::get('/', function () {
    return view('greeting', ['name' => 'James']);
});
Posted by: Guest on May-06-2020

Code answers related to "laravel load view in variable"

Browse Popular Code Answers by Language