刀片诱惑@include(“视图”)

Is it possible for Blade's Engine to work within a view that is @include() from an extended view?

In my example i have an index.blade.php which @extends a default.blade.php master template. Within this Default template i include a number of other views. One of these views requires me to display some dynamic data which is passed to default.blade.php via a view composer. Within these views, Blade doesn't seem to work. All i get is flat text {{ $var }} with no processing.