Fix when blade call has no arguments

This commit is contained in:
Deon George 2021-12-20 14:35:58 +11:00
parent ef210651aa
commit 71712d445f
1 changed files with 4 additions and 5 deletions

View File

@ -27,16 +27,15 @@ class CustomBladeServiceProvider extends ServiceProvider
private function resolve(string $content,string $expression): string
{
if (str_contains($expression,','))
if (str_contains($expression,',')) {
[$type,$arguments] = explode(',',$expression,2);
$arguments = explode('|',$arguments);
else {
} else {
$type = $expression;
$arguments = '';
$arguments = [];
}
$arguments = explode('|',$arguments);
$return = collect();
$urls = collect();