Skip to content

Commit

Permalink
allow html parser base to be string
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyvr committed May 11, 2023
1 parent bf32c46 commit b392c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parsers/Html.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function parse()
$content = $blocks->implode("\n");
}

$this->output = view($this->base, ['slot' => $content])->render();
$this->output = $this->createBaseView(['slot' => $content]);

return $this;
}
Expand Down

0 comments on commit b392c04

Please sign in to comment.