diff --git a/src/SeoManagerServiceProvider.php b/src/SeoManagerServiceProvider.php index 61b730c..dd367bd 100644 --- a/src/SeoManagerServiceProvider.php +++ b/src/SeoManagerServiceProvider.php @@ -75,7 +75,6 @@ public function registerHelpers() */ public function registerBladeDirectives() { - Blade::directive('meta', function ($expression) { $meta = ''; $expression = trim($expression, '\"\''); @@ -85,24 +84,24 @@ public function registerBladeDirectives() $meta .= ""; } } else { - $meta .= ""; + $meta .= ""; } return $meta; }); Blade::directive('keywords', function () { - return ""; + return ""; }); Blade::directive('url', function () { - return ""; + return ""; }); Blade::directive('author', function () { - return ""; + return ""; }); Blade::directive('description', function () { - return ""; + return ""; }); Blade::directive('title', function () { - return ""; + return ""; }); Blade::directive('openGraph', function ($expression) { $expression = trim($expression, '\"\''); @@ -113,7 +112,7 @@ public function registerBladeDirectives() $meta .= ""; } } else { - $meta .= ""; + $meta .= ""; } return $meta; });