Improved theme package code style

This commit is contained in:
Jitendra Singh 2020-02-20 12:39:39 +05:30
parent 0740527b54
commit 062bd52174
1 changed files with 1 additions and 2 deletions

View File

@ -81,8 +81,7 @@ class ViewRenderEventManager
foreach ($this->templates as $template) {
if (view()->exists($template)) {
$string .= view($template , $this->params)->render();
}
elseif (is_string($template)) {
} else if (is_string($template)) {
$string .= $template;
}
}