Answers for "loadview to show particular data laravel"

PHP
4

laravel load view in variable

$html = view('users.edit', compact('user'))->render();
Posted by: Guest on October-07-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

Code answers related to "loadview to show particular data laravel"

Browse Popular Code Answers by Language