is_published) { abort(404); } $this->news = $news; // Tambah view count $this->news->increment('view_count'); } public function render() { return view('livewire.guest.news-show') ->layout('components.guest-layout', [ 'title' => $this->news->title, // SEO: Mengambil potongan konten untuk meta description 'description' => Str::limit(strip_tags($this->news->content), 160) ]); } }