@@ -67,7 +67,7 @@ public function registerContentTags()
67
67
$ attributes = preg_split ('/\s?,\s?/ ' , array_get ($ result , 2 , []));
68
68
$ tagName = array_get (array_filter ($ attributes ), 0 , "'div' " );
69
69
70
- $ options = count ($ attributes ) >= 2 ? implode (array_slice ($ attributes , 1 ), ' , ' ) : "[] " ;
70
+ $ options = count ($ attributes ) >= 2 ? implode (' , ' , array_slice ($ attributes , 1 )) : "[] " ;
71
71
$ replacement = "<?php echo '<'. $ tagName.app('html')->attributes( $ options).'>';$3 ?> " ;
72
72
$ view = preg_replace ($ pattern , $ replacement , $ view , 1 );
73
73
}
@@ -93,7 +93,7 @@ public function registerContentTags()
93
93
$ tagName = array_get (array_filter ($ attributes ), 0 , "'div' " );
94
94
$ record = array_get ($ attributes , 1 );
95
95
$ prefix = array_get ($ attributes , 2 , "null " );
96
- $ options = count ($ attributes ) >= 4 ? implode (array_slice ($ attributes , 3 ), ' , ' ) : "[] " ;
96
+ $ options = count ($ attributes ) >= 4 ? implode (' , ' , array_slice ($ attributes , 3 )) : "[] " ;
97
97
98
98
$ asOption = preg_split ('/, */ ' , array_get ($ result , 3 ));
99
99
0 commit comments