1
2
3
4
5
6
7
$html = '
Hello, {{ $name }}
@if($condition)
There is one record
@endif
';
return \Illuminate\Support\Facades\Blade::render($html, ['name' => 'Julian Bashir', 'condition' => true]);