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 }}