Answers for "return data to view laravel"

PHP
7

laravel pass view with data

return view("blog", ["posts"=>$posts]);
Or:
return view("blog", compact("posts"));
Posted by: Guest on January-03-2020
1

laravel view with data in blade

// Here `test-file.blade.php` is the view file and 
// We are passong `is_footer_messages` = true

@include('test-file', [ 'is_footer_messages' => true ]) 
  
// Access this vairable now in `test-file.blade.php`
{{ $is_footer_messages }}
Posted by: Guest on September-19-2021
1

return view with variable laravel

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

Code answers related to "return data to view laravel"

Browse Popular Code Answers by Language