TomasVotruba / bladestan

PHPStan analysis for Blade templates
https://tomasvotruba.com/blog/introducing-bladestan-phpstan-analysis-of-blade-templates/
MIT License
280 stars 13 forks source link

Constructed template name will give Undefined variable $__env errors #59

Open AJenbo opened 1 year ago

AJenbo commented 1 year ago
@include('welcome.' . $type)

Workaround:

@switch($type)
@case('first-time')
    @include('welcome.first-time')
    @break
@case('back')
    @include('welcome.back')
    @break
@endswitch