Assign variable value on the fly
Is there a way to pass back / change variable during Envoy.blade.php run?
@setup
$var = 'Hello';
@endsetup
@task('test', ['on' => 'web'])
echo {{ $var }}
//how can I change $var from here?
@endtask
Please or to participate in this conversation.