diff --git a/src/Http/Livewire/Faq.php b/src/Http/Livewire/Faq.php
index 59bacc3..8c33906 100644
--- a/src/Http/Livewire/Faq.php
+++ b/src/Http/Livewire/Faq.php
@@ -11,7 +11,7 @@ public function render()
{
seo()
->title(__('FAQ'))
- ->description(__('FAQs') . ' ' . config('zeus-sky.site_description', 'Laravel'))
+ ->description(__('FAQs').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '')
->rawTag('')
diff --git a/src/Http/Livewire/Page.php b/src/Http/Livewire/Page.php
index 52ea15b..3f2a74a 100644
--- a/src/Http/Livewire/Page.php
+++ b/src/Http/Livewire/Page.php
@@ -21,7 +21,7 @@ public function render()
}
seo()
->title($this->page->title)
- ->description(($this->page->description ?? '') . ' ' . config('zeus-sky.site_description', 'Laravel'))
+ ->description(($this->page->description ?? '').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '')
->rawTag('')
diff --git a/src/Http/Livewire/Post.php b/src/Http/Livewire/Post.php
index 908bd2d..0f452fb 100644
--- a/src/Http/Livewire/Post.php
+++ b/src/Http/Livewire/Post.php
@@ -22,7 +22,7 @@ public function render()
seo()
->title($this->post->title)
- ->description(($this->post->description ?? '') . ' ' . config('zeus-sky.site_description', 'Laravel'))
+ ->description(($this->post->description ?? '').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '')
->rawTag('')
diff --git a/src/Http/Livewire/Posts.php b/src/Http/Livewire/Posts.php
index 43bca9e..14261b6 100644
--- a/src/Http/Livewire/Posts.php
+++ b/src/Http/Livewire/Posts.php
@@ -38,7 +38,7 @@ public function render()
seo()
->title(__('Posts'))
- ->description(__('Posts') . ' ' . config('zeus-sky.site_description', 'Laravel'))
+ ->description(__('Posts').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '')
->rawTag('')