Skip to content

Commit 16f77dc

Browse files
authored
Merge pull request #2067 from lukchojnicki/9.0
[9.0] Fix rendering column from blade file.
2 parents 0c5764b + dc3a112 commit 16f77dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utilities/Helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static function compileContent($content, array $data, $param)
7878
public static function compileBlade($str, $data = [])
7979
{
8080
if (view()->exists($str)) {
81-
return view($str, $data);
81+
return view($str, $data)->render();
8282
}
8383

8484
ob_start() && extract($data, EXTR_SKIP);

0 commit comments

Comments
 (0)